Improve some logger error messages.

This commit is contained in:
softsimon
2020-10-15 11:12:33 +07:00
parent 86c654f22f
commit 472b1d35c2
4 changed files with 3 additions and 4 deletions

View File

@@ -107,7 +107,7 @@ class WebsocketHandler {
client.send(JSON.stringify(response));
}
} catch (e) {
logger.err(e);
logger.err('Error parsing websocket message: ' + e);
}
});
});