summaryrefslogtreecommitdiff
path: root/js/codeq/comms.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/comms.js')
-rw-r--r--js/codeq/comms.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/codeq/comms.js b/js/codeq/comms.js
index de6f918..db9b7b5 100644
--- a/js/codeq/comms.js
+++ b/js/codeq/comms.js
@@ -86,13 +86,13 @@
event = m.event;
if (typeof event !== 'string') {
- codeq.log.warn('Incoming message without a TID and with no event name, dropping it on the floor: ' + data);
+ codeq.log.info('Incoming message without a TID and with no event name, dropping it on the floor: ' + data);
return;
}
handlers = requestHandlers[event];
if (!handlers) {
- codeq.log.warn('Incoming event message cannot be handled: no handler registered for ' + event);
+ codeq.log.info('Incoming event message cannot be handled: no handler registered for ' + event);
return;
}