diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/msg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/msg.py b/bitbake/lib/bb/msg.py index 00dc139c88..9d26fa06bd 100644 --- a/bitbake/lib/bb/msg.py +++ b/bitbake/lib/bb/msg.py | |||
@@ -34,9 +34,9 @@ class BBLogFormatter(logging.Formatter): | |||
34 | """Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is""" | 34 | """Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is""" |
35 | 35 | ||
36 | DEBUG = logging.DEBUG | 36 | DEBUG = logging.DEBUG |
37 | VERBOSE = 19 | 37 | VERBOSE = logging.INFO - 1 |
38 | NOTE = logging.INFO | 38 | NOTE = logging.INFO |
39 | PLAIN = 21 | 39 | PLAIN = logging.INFO + 1 |
40 | ERROR = logging.ERROR | 40 | ERROR = logging.ERROR |
41 | WARNING = logging.WARNING | 41 | WARNING = logging.WARNING |
42 | CRITICAL = logging.CRITICAL | 42 | CRITICAL = logging.CRITICAL |