From e2bca737f08e39037f3cf89a14f70eace611cc1a Mon Sep 17 00:00:00 2001 From: ehofman Date: Sat, 22 Mar 2003 10:34:38 +0000 Subject: [PATCH] Make debug levels an integer --- simgear/debug/debug_types.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/simgear/debug/debug_types.h b/simgear/debug/debug_types.h index d260cba0..719c4c56 100644 --- a/simgear/debug/debug_types.h +++ b/simgear/debug/debug_types.h @@ -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; + -- 2.39.5