Browse Source

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 5 years ago
parent
commit
890df9ba03
1 changed files with 1 additions and 1 deletions
  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))