Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/logger.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/logger.py')
-rw-r--r--sugar/logger.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sugar/logger.py b/sugar/logger.py
index d47f8a5..9328058 100644
--- a/sugar/logger.py
+++ b/sugar/logger.py
@@ -80,6 +80,7 @@ class Handler(logging.Handler):
def __exception_handler(typ, exc, tb):
trace = StringIO()
traceback.print_exception(typ, exc, tb, None, trace)
+ print >> sys.stderr, trace.getvalue()
__queue.append(logging.ERROR, trace.getvalue())