"Applying STS policy" should be TRACE, not DEBUG
This commit is contained in:
parent
7408bfc9d3
commit
5b2c979649
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
expiration = sts_policy["from"]+sts_policy
|
expiration = sts_policy["from"]+sts_policy
|
||||||
if not sts_policy["duration"] or time.time() <= (
|
if not sts_policy["duration"] or time.time() <= (
|
||||||
sts_policy["from"]+sts_policy["duration"]):
|
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"])])
|
[str(event["server"])])
|
||||||
event["server"].tls = True
|
event["server"].tls = True
|
||||||
event["server"].port = sts_policy["port"]
|
event["server"].port = sts_policy["port"]
|
||||||
|
|
Loading…
Reference in a new issue