From b49d5775e273bf76af58bb5978934d50378bec53 Mon Sep 17 00:00:00 2001 From: Celelibi Date: Fri, 19 Jun 2020 01:57:04 +0200 Subject: [PATCH] TS6Protocol: Missing logging argument in handle_realhost Signed-off-by: Celelibi --- protocols/ts6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6.py b/protocols/ts6.py index b5e51d1..969e4d1 100644 --- a/protocols/ts6.py +++ b/protocols/ts6.py @@ -746,7 +746,7 @@ class TS6Protocol(TS6BaseProtocol): def handle_realhost(self, uid, command, args): """Handles real host propagation.""" - log.debug('(%s) Got REALHOST %s for %s', args[0], uid) + log.debug('(%s) Got REALHOST %s for %s', self.name, args[0], uid) self.users[uid].realhost = args[0] def handle_login(self, uid, command, args):