Explorar o código

qubespolicy: ease testing by calling str(target) only once

Don't call it multiple times depending on number of registered loggers.
Marek Marczykowski-Górecki %!s(int64=5) %!d(string=hai) anos
pai
achega
890df9ba03
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      qubespolicy/cli.py

+ 1 - 1
qubespolicy/cli.py

@@ -130,7 +130,7 @@ def main(args=None):
                 action.handle_user_response(True, response)
             else:
                 action.handle_user_response(False)
-        log.info('%s allowed to %s', log_prefix, action.target)
+        log.info('%s allowed to %s', log_prefix, str(action.target))
         action.execute(caller_ident)
     except qubespolicy.PolicySyntaxError as e:
         log.error('%s error loading policy: %s', log_prefix, str(e))