Rename VERBOSE log level to TRACE
[babeltrace.git] / src / bindings / python / bt2 / bt2 / logging.py
index 51d898cc83abc129fd9a89ce216177f302ddd531..f2a87e8683ab30c12a6fd0a899a054b41efbdeb1 100644 (file)
@@ -25,7 +25,7 @@ import bt2
 
 
 class LoggingLevel:
-    VERBOSE = native_bt.LOGGING_LEVEL_VERBOSE
+    TRACE = native_bt.LOGGING_LEVEL_TRACE
     DEBUG = native_bt.LOGGING_LEVEL_DEBUG
     INFO = native_bt.LOGGING_LEVEL_INFO
     WARN = native_bt.LOGGING_LEVEL_WARN
@@ -44,7 +44,7 @@ def get_global_logging_level():
 
 def set_global_logging_level(level):
     levels = (
-        LoggingLevel.VERBOSE,
+        LoggingLevel.TRACE,
         LoggingLevel.DEBUG,
         LoggingLevel.INFO,
         LoggingLevel.WARN,
This page took 0.02433 seconds and 4 git commands to generate.