bt2c::Logger: make `Level` enumerators more readable
[babeltrace.git] / src / cpp-common / bt2c / logging.hpp
index df5cb494d9d50b127feeeac32e9a4386fd662a06..8cd1b94ff4f13c0bf2bccd6222d74a01b5771698 100644 (file)
@@ -49,13 +49,14 @@ public:
 
     /* Available log levels */
     WISE_ENUM_CLASS_MEMBER(Level,
-        (Trace, BT_LOG_TRACE),
-        (Debug, BT_LOG_DEBUG),
-        (Info, BT_LOG_INFO),
-        (Warning, BT_LOG_WARNING),
-        (Error, BT_LOG_ERROR),
-        (Fatal, BT_LOG_FATAL),
-        (None, BT_LOG_NONE));
+        (Trace,     BT_LOG_TRACE),
+        (Debug,     BT_LOG_DEBUG),
+        (Info,      BT_LOG_INFO),
+        (Warning,   BT_LOG_WARNING),
+        (Error,     BT_LOG_ERROR),
+        (Fatal,     BT_LOG_FATAL),
+        (None,      BT_LOG_NONE)
+    )
 
     /* clang-format on */
 
This page took 0.023432 seconds and 4 git commands to generate.