We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e94809 commit 67e1c14Copy full SHA for 67e1c14
1 file changed
lib/comm.js
@@ -373,6 +373,19 @@ class Communication {
373
if (socket.auth && (socket.type == 'server')) this.handleMonitorPluginTestResult(socket, data);
374
break;
375
376
+ case 'notice':
377
+ case 'error':
378
+ case 'warning':
379
+ case 'critical':
380
+ // allow satellite to log to main activity log
381
+ if (socket.auth && (socket.type == 'server')) {
382
+ data.server = socket.server.id;
383
+ data.hostname = socket.server.hostname;
384
+ data.ip = socket.server.ip;
385
+ this.logActivity(cmd, data);
386
+ }
387
+ break;
388
+
389
// other commands here
390
391
} // switch cmd
0 commit comments