diff options
author | Rob Austein <sra@hactrn.net> | 2014-05-28 21:52:52 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-05-28 21:52:52 +0000 |
commit | 918c574234813292f6ec7154f83cc9ace3a957ae (patch) | |
tree | a0adba1f741f5c7454d85383910681601033d108 /ca/tests/smoketest.py | |
parent | 937db24e600d3b29d780575120250e47980de901 (diff) |
Update all uses of rpki.log.traceback() for use with logging module.
svn path=/trunk/; revision=5838
Diffstat (limited to 'ca/tests/smoketest.py')
-rw-r--r-- | ca/tests/smoketest.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ca/tests/smoketest.py b/ca/tests/smoketest.py index 42e259e6..b8472ba3 100644 --- a/ca/tests/smoketest.py +++ b/ca/tests/smoketest.py @@ -301,7 +301,7 @@ def main(): except Exception, e: logger.info("Event loop exited with an exception: %r" % e) - rpki.log.traceback() + rpki.log.traceback(logger) finally: @@ -631,7 +631,7 @@ class allocation(object): def done(e): if isinstance(e, Exception): - rpki.log.traceback() + rpki.log.traceback(logger) raise e cb() @@ -648,7 +648,7 @@ class allocation(object): def done(e): if isinstance(e, Exception): - rpki.log.traceback() + rpki.log.traceback(logger) raise e cb() @@ -1296,7 +1296,7 @@ def call_pubd(pdus, cb): def call_pubd_eb(e): logger.warning("Problem calling pubd: %s" % e) - rpki.log.traceback() + rpki.log.traceback(logger) rpki.http.client( url = q_url, |