src/Types.hh
branchnew_graphics
changeset 418 194bc810a570
parent 417 c503e0c6a740
--- a/src/Types.hh	Thu Jan 22 01:53:05 2009 +0200
+++ b/src/Types.hh	Thu Jan 22 02:38:33 2009 +0200
@@ -15,6 +15,21 @@
 typedef VectorType<float> Vector;
 
 /**
+ * Message severity, WARN and above should go to stderr, INFO and DEBUG to stdout
+ *
+ * @see Engine::log
+ * @see EngineConfig::log_level
+ * @see Logger
+ */
+enum LogLevel {
+    FATAL,
+    ERROR,
+    WARN,
+    INFO,
+    DEBUG,
+};
+
+/**
  * A player's health is measured in...
  */
 typedef int16_t Health;