| Submitter | Paul Eggleton |
|---|---|
| Date | Jan. 13, 2012, 5:01 p.m. |
| Message ID | <081cab9c738ab2c91b7f6e76c5f8ccb0638e4593.1326473488.git.paul.eggleton@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/19307/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 0340619..5366386 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py @@ -127,7 +127,7 @@ def main(server, eventHandler): if event.levelno >= format.ERROR: errors = errors + 1 return_value = 1 - if event.levelno >= format.WARNING: + elif event.levelno == format.WARNING: warnings = warnings + 1 # For "normal" logging conditions, don't show note logs from tasks # but do show them if the user has changed the default log level to
The count of warnings being shown in the summary at the end was also including the number of errors. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> --- bitbake/lib/bb/ui/knotty.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)