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) {
|
while( (message = parseMessage(msgBuffer)) != null) {
|
||||||
switch (message.getType()) {
|
switch (message.getType()) {
|
||||||
case NULL:
|
case NULL:
|
||||||
|
LOG.trace("NULL websocket still alive");
|
||||||
break;
|
break;
|
||||||
case LOGIN:
|
case LOGIN:
|
||||||
LOG.debug("LOGIN: {}", message);
|
LOG.debug("LOGIN: {}", message);
|
||||||
|
|
Loading…
Reference in New Issue