# HG changeset patch # User Goffi # Date 1547936842 -3600 # Node ID 4a05e67a8025b4b163cfdede7412bfb8c387d93b # Parent 298408833ec264d35059ddb2194c5e8ee598bf6c quick frontend (chat): fixed use of old method printInfo diff -r 298408833ec2 -r 4a05e67a8025 sat_frontends/quick_frontend/quick_chat.py --- a/sat_frontends/quick_frontend/quick_chat.py Sat Jan 19 22:49:32 2019 +0100 +++ b/sat_frontends/quick_frontend/quick_chat.py Sat Jan 19 23:27:22 2019 +0100 @@ -418,7 +418,10 @@ def changeUserNick(self, old_nick, new_nick): """Change nick of a user in group list""" - self.printInfo("%s is now known as %s" % (old_nick, new_nick)) + log.info("{old} is now known as {new} in room {room_jid}".format( + old = old_nick, + new = new_nick, + room_jid = self.target)) ## Messages ##