Browse Source

Merge #1284: Change verbosity of on_nick_leave_directory log message from info to debug

447cdb2 Change verbosity of on_nick_leave_directory log message from info to debug (Kristaps Kaupe)
master
Adam Gibson 4 years ago
parent
commit
e8822b72f6
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 4
      jmdaemon/jmdaemon/onionmc.py

4
jmdaemon/jmdaemon/onionmc.py

@ -1074,8 +1074,8 @@ class OnionMessageChannel(MessageChannel):
if not nick in self.active_directories:
return
if not dir_peer in self.active_directories[nick]:
log.info("Directory {} is telling us that {} has left, but we "
"didn't know about them. Ignoring.".format(
log.debug("Directory {} is telling us that {} has left, but we "
"didn't know about them. Ignoring.".format(
dir_peer.peer_location(), nick))
return
log.debug("Directory {} has lost connection to: {}".format(

Loading…
Cancel
Save