aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-05 14:16:14 +0000
committerGravatar jesopo2018-11-05 14:16:14 +0000
commit5b2c9796494bb583222c9a4edffb89fb6e454bf8 (patch)
tree6cf89116432ae719f56257d82cad345923c8784f
parentAdd missing ")" in modules/sts.py (diff)
signature
"Applying STS policy" should be TRACE, not DEBUG
-rw-r--r--modules/sts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sts.py b/modules/sts.py
index d1ac3bb7..a6aca5d3 100644
--- a/modules/sts.py
+++ b/modules/sts.py
@@ -57,7 +57,7 @@ class Module(ModuleManager.BaseModule):
expiration = sts_policy["from"]+sts_policy
if not sts_policy["duration"] or time.time() <= (
sts_policy["from"]+sts_policy["duration"]):
- self.log.debug("Applying STS policy for '%s'",
+ self.log.trace("Applying STS policy for '%s'",
[str(event["server"])])
event["server"].tls = True
event["server"].port = sts_policy["port"]