diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-09 17:55:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-10 11:10:00 -0700 |
commit | aadfea6be629a17e4e26747aba4f59f5ac8e7558 (patch) | |
tree | b9491516757b2243b56b1b7b1cbf7e06770f435e /bitbake/lib/bb/runqueue.py | |
parent | 0b4ae1c7742cec14395a0d845e1ed42b88b0e215 (diff) | |
download | poky-aadfea6be629a17e4e26747aba4f59f5ac8e7558.tar.gz |
bitbake: providers/runqueue/taskdata: Optimise logger.debug calls
A run of "bitbake bash -c unpack" when the task has already been
completed resulted in about 9000 calls to logger.debug(). With this
patch which comments out some noisy/less usefull logging and moves
other logging calls outside loops, this number is reduced to 1000
calls. This results in cleaner logs and gives a small but
measurable 0.15s speedup. The log size dropped from 900kb to 160kb.
(Bitbake rev: d2677f084fe1d8846db77d89ef5e6ffb18dc171a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 7d3e91a743..c486c988e2 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -481,7 +481,7 @@ class RunQueueData: | |||
481 | fn = taskData.fn_index[fnid] | 481 | fn = taskData.fn_index[fnid] |
482 | task_deps = self.dataCache.task_deps[fn] | 482 | task_deps = self.dataCache.task_deps[fn] |
483 | 483 | ||
484 | logger.debug(2, "Processing %s:%s", fn, taskData.tasks_name[task]) | 484 | #logger.debug(2, "Processing %s:%s", fn, taskData.tasks_name[task]) |
485 | 485 | ||
486 | if fnid not in taskData.failed_fnids: | 486 | if fnid not in taskData.failed_fnids: |
487 | 487 | ||