summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/knotty.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-09 23:38:35 -0500
committerChris Larson <chris_larson@mentor.com>2010-12-10 09:56:15 -0500
commitee1cce6ab21ddda60a7a070d03e98ff8485a5e71 (patch)
treeab54015a15eee137416cce360dafc67131fbbf9d /lib/bb/ui/knotty.py
parent411b808b81216473c3dbeca783ec5bc99152da26 (diff)
downloadbitbake-ee1cce6ab21ddda60a7a070d03e98ff8485a5e71.tar.gz
build: send logging messages to the log file for python functions
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/ui/knotty.py')
-rw-r--r--lib/bb/ui/knotty.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py
index a60c1853a..b8cb2c05e 100644
--- a/lib/bb/ui/knotty.py
+++ b/lib/bb/ui/knotty.py
@@ -26,6 +26,7 @@ import itertools
import xmlrpclib
import logging
import progressbar
+import bb.msg
from bb import ui
from bb.ui import uihelper
@@ -57,15 +58,6 @@ class NonInteractiveProgress(object):
self.fobj.write("done.\n")
self.fobj.flush()
-class BBLogFormatter(logging.Formatter):
- """Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is"""
-
- def format(self, record):
- if record.levelno == logging.INFO + 1:
- return record.getMessage()
- else:
- return logging.Formatter.format(self, record)
-
def main(server, eventHandler):
# Get values of variables which control our output
@@ -85,7 +77,7 @@ def main(server, eventHandler):
logging.addLevelName(level, logging.getLevelName(logging.DEBUG))
console = logging.StreamHandler(sys.stdout)
- format = BBLogFormatter("%(levelname)s: %(message)s")
+ format = bb.msg.BBLogFormatter("%(levelname)s: %(message)s")
console.setFormatter(format)
logger.addHandler(console)