aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/loglevel.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/core/loglevel.h')
-rw-r--r--yage/core/loglevel.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/yage/core/loglevel.h b/yage/core/loglevel.h
index eb9ff5f8..78af24af 100644
--- a/yage/core/loglevel.h
+++ b/yage/core/loglevel.h
@@ -9,10 +9,16 @@
#ifndef YAGE_CORE_LOGLEVEL_H
#define YAGE_CORE_LOGLEVEL_H
-class LogLevel
-{
-public:
- LogLevel();
+namespace yage {
+
+enum class LogLevel {
+ DEBUG,
+ INFO,
+ WARNING,
+ ERROR,
+ FATAL,
};
+}
+
#endif