diff --git a/esp8266/scripts/webrepl.py b/esp8266/scripts/webrepl.py index df742408da..759ebeb838 100644 --- a/esp8266/scripts/webrepl.py +++ b/esp8266/scripts/webrepl.py @@ -28,6 +28,7 @@ def setup_conn(port): def accept_conn(listen_sock): global client_s cl, remote_addr = listen_sock.accept() + print("\nWebREPL connection from:", remote_addr) client_s = cl websocket_helper.server_handshake(cl) ws = websocket.websocket(cl, True)