aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-07 12:54:55 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-07 14:50:27 +0000
commitfb9c5a196eda01801a922aceab21e54d41f53a6a (patch)
tree944200e06547f68b83d9400a7418fd48b7a03d00 /bitbake/lib/bb/event.py
parentaf6480bdde2e2e3709d219f9ca43d7c0938314b6 (diff)
downloadopenembedded-core-contrib-fb9c5a196eda01801a922aceab21e54d41f53a6a.tar.gz
bitbake: event/build: Drop stdout specific handling for python messages as this is no longer needed with newer log handling
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index bd2042a99c..3467ddd613 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -36,7 +36,6 @@ import bb.utils
# the runqueue forks off.
worker_pid = 0
worker_pipe = None
-useStdout = True
class Event(object):
"""Base class for events"""
@@ -162,7 +161,6 @@ def remove(name, handler):
def register_UIHhandler(handler):
bb.event._ui_handler_seq = bb.event._ui_handler_seq + 1
_ui_handlers[_ui_handler_seq] = handler
- bb.event.useStdout = False
return _ui_handler_seq
def unregister_UIHhandler(handlerNum):
@@ -382,8 +380,6 @@ class LogHandler(logging.Handler):
def emit(self, record):
fire(record, None)
- if bb.event.useStdout:
- print(self.format(record))
def filter(self, record):
record.taskpid = worker_pid