X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=src%2Fbindings%2Fpython%2Fbt2%2Fbt2%2Flogging.py;h=f2a87e8683ab30c12a6fd0a899a054b41efbdeb1;hp=51d898cc83abc129fd9a89ce216177f302ddd531;hb=ef267d12284b855bc52ee429a5dc12da1d1e3b95;hpb=759f3caae66fb6b6c2c327bcbb0478e56883dd23 diff --git a/src/bindings/python/bt2/bt2/logging.py b/src/bindings/python/bt2/bt2/logging.py index 51d898cc..f2a87e86 100644 --- a/src/bindings/python/bt2/bt2/logging.py +++ b/src/bindings/python/bt2/bt2/logging.py @@ -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,