瀏覽代碼

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))