summaryrefslogtreecommitdiffstats
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)
downloadpoky-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
36# the runqueue forks off. 36# the runqueue forks off.
37worker_pid = 0 37worker_pid = 0
38worker_pipe = None 38worker_pipe = None
39useStdout = True
40 39
41class Event(object): 40class Event(object):
42 """Base class for events""" 41 """Base class for events"""
@@ -162,7 +161,6 @@ def remove(name, handler):
162def register_UIHhandler(handler): 161def register_UIHhandler(handler):
163 bb.event._ui_handler_seq = bb.event._ui_handler_seq + 1 162 bb.event._ui_handler_seq = bb.event._ui_handler_seq + 1
164 _ui_handlers[_ui_handler_seq] = handler 163 _ui_handlers[_ui_handler_seq] = handler
165 bb.event.useStdout = False
166 return _ui_handler_seq 164 return _ui_handler_seq
167 165
168def unregister_UIHhandler(handlerNum): 166def unregister_UIHhandler(handlerNum):
@@ -382,8 +380,6 @@ class LogHandler(logging.Handler):
382 380
383 def emit(self, record): 381 def emit(self, record):
384 fire(record, None) 382 fire(record, None)
385 if bb.event.useStdout:
386 print(self.format(record))
387 383
388 def filter(self, record): 384 def filter(self, record):
389 record.taskpid = worker_pid 385 record.taskpid = worker_pid