Add trace log statement for arriving NULLs
This helps to see, if the websocket is still healty
This commit is contained in:
parent
330bd29bbf
commit
91a41d446b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue