]> git.mxchange.org Git - simgear.git/commitdiff
Make debug levels an integer
authorehofman <ehofman>
Sat, 22 Mar 2003 10:34:38 +0000 (10:34 +0000)
committerehofman <ehofman>
Sat, 22 Mar 2003 10:34:38 +0000 (10:34 +0000)
simgear/debug/debug_types.h

index d260cba0d906a3fe67962c2f9171147e071d46b8..719c4c566c135b887d9118997296df65bcb3707e 100644 (file)
@@ -34,11 +34,12 @@ typedef enum {
  * Define the possible logging priorities (and their order).
  */
 typedef enum {
-    SG_BULK,       // For frequent messages
-    SG_DEBUG,      // Less frequent debug type messages
-    SG_INFO,        // Informatory messages
-    SG_WARN,       // Possible impending problem
-    SG_ALERT       // Very possible impending problem
+    SG_BULK = 1,       // For frequent messages
+    SG_DEBUG,          // Less frequent debug type messages
+    SG_INFO,           // Informatory messages
+    SG_WARN,           // Possible impending problem
+    SG_ALERT           // Very possible impending problem
     // SG_EXIT,        // Problem (no core)
     // SG_ABORT        // Abandon ship (core)
 } sgDebugPriority;
+