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/tests | |
parent | 471af29aa0253ee649040577e0683037ae761927 (diff) |
Downgrade syslog priority of a few messages
svn path=/rpkid/rpki/https.py; revision=3444
Diffstat (limited to 'rpkid/tests')
-rw-r--r-- | rpkid/tests/smoketest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/tests/smoketest.py b/rpkid/tests/smoketest.py index ba171bc4..56c3f40b 100644 --- a/rpkid/tests/smoketest.py +++ b/rpkid/tests/smoketest.py @@ -966,7 +966,7 @@ class allocation(object): signer = subprocess.Popen(cmd, stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.PIPE) signed = signer.communicate(input = b.pkcs10_request.get_PEM()) if not signed[0]: - rpki.log.error(signed[1]) + rpki.log.warn(signed[1]) raise RuntimeError, "Couldn't issue BSC EE certificate" s.bsc_ee = rpki.x509.X509(PEM = signed[0]) s.bsc_crl = rpki.x509.CRL(PEM_file = s.name + "-SELF.crl") @@ -1196,7 +1196,7 @@ def call_pubd(pdus, cb): cb(msg) def call_pubd_eb(e): - rpki.log.error("Problem calling pubd: %s" % e) + rpki.log.warn("Problem calling pubd: %s" % e) rpki.log.traceback() rpki.https.client( |