Skip to content

Commit

Permalink
better log level
Browse files Browse the repository at this point in the history
  • Loading branch information
epheph committed Feb 26, 2018
1 parent 1323bb0 commit 5eb8489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/run-websocket-server.ts
Expand Up @@ -70,7 +70,7 @@ export function runWebsocketServer(db: Knex, app: express.Application, augur: Au
} else {
dispatchJsonRpcRequest(db, message as JsonRpcRequest, augur, (err: Error|null, result?: any): void => {
if (websocket.readyState !== WebSocket.OPEN ) {
console.log("Client disconnected during request, ignoring response");
console.warn("Client disconnected during request, ignoring response");
return;
}
if (err) {
Expand Down

0 comments on commit 5eb8489

Please sign in to comment.