Преглед изворни кода

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 година
родитељ
комит
890df9ba03
1 измењених фајлова са 1 додато и 1 уклоњено
  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))