X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fdebug%2Fdebug_types.h;h=e0013e2bf1259cd0ae1ee7d78e78ecb66a74dbbe;hb=a25e859fa773c9463e4bec042b8d0b39041c29ad;hp=9dfb88e20caf01b22ca5aad1f468e8641bb91f9c;hpb=557fade4a7df3f030b943ba6114c3c566c57b73c;p=simgear.git diff --git a/simgear/debug/debug_types.h b/simgear/debug/debug_types.h index 9dfb88e2..e0013e2b 100644 --- a/simgear/debug/debug_types.h +++ b/simgear/debug/debug_types.h @@ -23,7 +23,11 @@ typedef enum { SG_IO = 0x00001000, SG_CLIPPER = 0x00002000, SG_NETWORK = 0x00004000, - SG_UNDEFD = 0x00008000, // For range checking + SG_ATC = 0x00008000, + SG_NASAL = 0x00010000, + SG_INSTR = 0x00020000, + SG_SYSTEMS = 0x00040000, + SG_UNDEFD = 0x00080000, // For range checking SG_ALL = 0xFFFFFFFF } sgDebugClass; @@ -33,11 +37,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; +