diff options
author | Rob Austein <sra@hactrn.net> | 2008-01-27 06:11:21 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-01-27 06:11:21 +0000 |
commit | 5c66a25dbb8ad1c283c3503e566782876179a1c3 (patch) | |
tree | 45be7843bfc7bf367afb83c7d9c31aba08c9db71 /scripts/rpkid.py | |
parent | 692a976a5197930ee0c9e0b5dec6f9c3bb721456 (diff) |
Debug left-right rekey and revoke operations
svn path=/scripts/rpki/left_right.py; revision=1510
Diffstat (limited to 'scripts/rpkid.py')
-rwxr-xr-x | scripts/rpkid.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rpkid.py b/scripts/rpkid.py index bf114c6e..5779753b 100755 --- a/scripts/rpkid.py +++ b/scripts/rpkid.py @@ -40,8 +40,8 @@ def left_right_handler(query, path): rpki.sql.sql_sweep(gctx) return 200, reply except lxml.etree.DocumentInvalid: - rpki.log.warning("Received reply document does not pass schema check: " + lxml.etree.tostring(r_elt, pretty_print = True)) - rpki.log.warning(traceback.format_exc()) + rpki.log.warn("Received reply document does not pass schema check: " + lxml.etree.tostring(r_elt, pretty_print = True)) + rpki.log.warn(traceback.format_exc()) return 500, "Schema violation" except Exception, data: rpki.log.error(traceback.format_exc()) |