send logs to ws

This commit is contained in:
Iuri Matias 2018-02-26 17:44:09 -05:00
parent 34c3882250
commit a8e35864c1
2 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,6 @@
-->
<!-- Dashboard Core -->
<link href="./assets/css/dashboard.css" rel="stylesheet" />
<script src="./assets/js/jquery-3.3.1.min.js"></script>
<!--

View File

@ -16,6 +16,7 @@ class WebServer {
this.port = options.port || this.webServerConfig.port;
this.events.emit("status", __("Starting Server"));
//this.server = new Server({logger: this.logger, host: this.host, port: this.port, events: this.events});
this.server = new Server({logger: this.logger, host: this.host, port: this.port, events: this.events, plugins: this.plugins});
this.setServiceCheck();