Skip to content

Commit

Permalink
include more debugging details
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Mar 14, 2024
1 parent 9ebcae3 commit 972ed49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/scripts/main.py
Expand Up @@ -944,7 +944,7 @@ def connect_or_fail(display_desc, opts):
except InitInfo:
raise
except Exception as e:
Logger("network").debug("failed to connect", exc_info=True)
Logger("network").debug(f"failed to connect to {display_desc}", exc_info=True)
einfo = str(e) or type(e)
raise InitExit(ExitCode.CONNECTION_FAILED, f"connection failed: {einfo}") from None

Expand Down

0 comments on commit 972ed49

Please sign in to comment.