aboutsummaryrefslogtreecommitdiff
path: root/rpkid/tests/smoketest.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2011-04-27 04:34:52 +0000
committerRob Austein <sra@hactrn.net>2011-04-27 04:34:52 +0000
commit744ec2cb899c6237d70c1126dc4295f86f69ca73 (patch)
tree812738b96bbb62acad324411e26c9989eb478a24 /rpkid/tests/smoketest.py
parent927c896cfb35ceefbfb476a7681a9dade6509b81 (diff)
First whack at some of the silliest logging code
svn path=/rpkid/rpki/async.py; revision=3793
Diffstat (limited to 'rpkid/tests/smoketest.py')
-rw-r--r--rpkid/tests/smoketest.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/rpkid/tests/smoketest.py b/rpkid/tests/smoketest.py
index 63528a77..38e0d110 100644
--- a/rpkid/tests/smoketest.py
+++ b/rpkid/tests/smoketest.py
@@ -860,7 +860,9 @@ class allocation(object):
f.write(x.get_PEM())
f.close()
- rpki.log.debug("Cross certified (%s) issuer %s [%s] subject %s [%s]" % (certfile, x.getIssuer(), x.hAKI(), x.getSubject(), x.hSKI()))
+ rpki.log.debug("Cross certified %s:" % certfile)
+ rpki.log.debug(" Issuer %s [%s]" % (x.getIssuer(), x.hAKI()))
+ rpki.log.debug(" Subject %s [%s]" % (x.getSubject(), x.hSKI()))
return x
def create_rpki_objects(self, cb):