Remove duplicate declaration
This commit is contained in:
parent
81649d7fee
commit
bc93204bd4
|
@ -54,8 +54,6 @@ class Server {
|
|||
this.app.use(bodyParser.json()); // support json encoded bodies
|
||||
this.app.use(bodyParser.urlencoded({extended: true})); // support encoded bodies
|
||||
|
||||
expressWebSocket(this.app);
|
||||
|
||||
this.app.ws('/logs', function(ws, _req) {
|
||||
self.events.on("log", function(logLevel, logMsg) {
|
||||
ws.send(JSON.stringify({msg: logMsg, msg_clear: logMsg.stripColors, logLevel: logLevel}), () => {});
|
||||
|
|
Loading…
Reference in New Issue