Remove duplicate declaration

This commit is contained in:
Anthony Laibe 2018-10-01 09:41:54 +01:00 committed by Pascal Precht
parent 00c6b0029d
commit b4054a01fa
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 0 additions and 2 deletions

View File

@ -76,8 +76,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}), () => {});