Skip to content

Commit

Permalink
#786: fix fallback code path using local logging handler (was missing…
Browse files Browse the repository at this point in the history
… first argument)

git-svn-id: https://xpra.org/svn/Xpra/trunk@8714 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Feb 28, 2015
1 parent 9e31b8c commit e003185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/ui_client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1422,7 +1422,7 @@ def remote_logging_handler(self, log, level, msg, *args, **kwargs):
if self.exit_code is not None:
#errors can happen during exit, don't care
return
self.local_logging(logging.WARNING, "failed to send logging packet: %s" % e)
self.local_logging(log, logging.WARNING, "failed to send logging packet: %s" % e)
finally:
self.in_remote_logging = False

Expand Down

0 comments on commit e003185

Please sign in to comment.