Skip to content

Commit

Permalink
Improve log message to include socket info when connected.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Feb 25, 2024
1 parent af08eb5 commit 1fb7670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _pydevd_bundle/pydevd_comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ def start_client(host, port):
s.settimeout(timeout)
s.connect((host, port))
s.settimeout(None) # no timeout after connected
pydev_log.info("Connected.")
pydev_log.info(f"Connected to: {s}.")
return s
except:
pydev_log.exception("Could not connect to %s: %s", host, port)
Expand Down

0 comments on commit 1fb7670

Please sign in to comment.