diff options
author | Rob Austein <sra@hactrn.net> | 2010-09-09 23:19:23 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-09-09 23:19:23 +0000 |
commit | 3eeab24a534366dfcdc560d58a0a060c04e7c51e (patch) | |
tree | 6b79530d872aeee9c6f4aa94adc68c3f90b81234 /rpkid/rpki/https.py | |
parent | 471af29aa0253ee649040577e0683037ae761927 (diff) |
Downgrade syslog priority of a few messages
svn path=/rpkid/rpki/https.py; revision=3444
Diffstat (limited to 'rpkid/rpki/https.py')
-rw-r--r-- | rpkid/rpki/https.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/https.py b/rpkid/rpki/https.py index 99aebd12..a291f771 100644 --- a/rpkid/rpki/https.py +++ b/rpkid/rpki/https.py @@ -663,7 +663,7 @@ class http_server(http_stream): except POW.SSLErrorSSLError, e: if "\n" in e: for line in str(e).splitlines(): - rpki.log.error(line) + rpki.log.warn(line) raise POW.SSLErrorSSLError, "TLS certificate problem, most likely" else: raise |