Add trace log statement for arriving NULLs

This helps to see, if the websocket is still healty
This commit is contained in:
0xboobface 2018-10-25 10:50:57 +02:00
parent 330bd29bbf
commit 91a41d446b
1 changed files with 1 additions and 0 deletions

View File

@ -171,6 +171,7 @@ public class MyFreeCamsClient {
while( (message = parseMessage(msgBuffer)) != null) {
switch (message.getType()) {
case NULL:
LOG.trace("NULL websocket still alive");
break;
case LOGIN:
LOG.debug("LOGIN: {}", message);