Commit 2a6ddace authored by Thibault VINCENT's avatar Thibault VINCENT
Browse files

add: rpc connection id in authentication logs

parent 4e01947b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -38,7 +38,8 @@ class CCNode(object):
    def authentify(self, login, password):
        '''
        '''
        logging.debug('Authenticating user %s' % login)
        logging.debug('Authenticating user `%s` on connection `%i`' % (login,
                                                        id(self._server)))
        try:
            role = self._server.authentify(login, password)
        except RpcError as err: