Skip to content

Commit 4815a08

Browse files
committed
Better error output
1 parent dc749e3 commit 4815a08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

websocket_server/websocket_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def run_forever(self):
5959
self.server_close()
6060
logger.info("Server terminated.")
6161
except Exception as e:
62-
logger.error("ERROR: WebSocketsServer: " + str(e), exc_info=True)
62+
logger.error(str(e), exc_info=True)
6363
exit(1)
6464

6565
def new_client(self, client, server):

0 commit comments

Comments
 (0)