diff options
author | W. Trevor King <wking@tremily.us> | 2013-01-24 02:31:52 -0500 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2013-01-24 02:36:22 -0500 |
commit | 932679f1e82a57feb4743e52d6c60f7331f057c2 (patch) | |
tree | 21c014cf36c8c159b7e5bf4627abf94b2e7a371b /libbe/command | |
parent | 182a556397c2b0f4638991942c736c5daff17111 (diff) | |
download | bugseverywhere-932679f1e82a57feb4743e52d6c60f7331f057c2.tar.gz |
Transition to libbe.LOG for logging
This makes it easier to tweak log verbosity and redirect logs to other
handlers. For example, the WSGI servers are unstable with stderr
closed, and crash with an IOError if they try to print a warning to
stderr.
Diffstat (limited to 'libbe/command')
-rw-r--r-- | libbe/command/import_xml.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbe/command/import_xml.py b/libbe/command/import_xml.py index a16b0b0..fbf456b 100644 --- a/libbe/command/import_xml.py +++ b/libbe/command/import_xml.py @@ -203,11 +203,11 @@ class Import_XML (libbe.command.Command): text = text.decode('unicode_escape').strip() version[child.tag] = text else: - sys.stderr.write( - 'ignoring unknown tag {} in {}\n'.format( + libbe.LOG.warning( + 'ignoring unknown tag {0} in {1}\n'.format( gchild.tag, child.tag)) else: - sys.stderr.write('ignoring unknown tag {} in {}\n'.format( + libbe.LOG.warning('ignoring unknown tag {0} in {1}\n'.format( child.tag, be_xml.tag)) return (version, root_bugdirs, root_bugs, root_comments) |