Skip to content

Commit 3387422

Browse files
authored
add hostid to debug log
I missed this file/line with JoinMarket-Org#623
1 parent 38e271d commit 3387422

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

joinmarket/message_channel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -837,8 +837,8 @@ def pubmsg(self, message):
837837
self._pubmsg(message)
838838

839839
def privmsg(self, nick, cmd, message):
840-
log.debug('>>privmsg ' + 'nick=' + nick + ' cmd=' + cmd + ' msg=' +
841-
message)
840+
log.debug('>>privmsg on %s: ' %
841+
(self.hostid) + 'nick=' + nick + ' cmd=' + cmd + ' msg=' + message)
842842
# should we encrypt?
843843
box, encrypt = self.get_encryption_box(cmd, nick)
844844
if encrypt:

0 commit comments

Comments
 (0)