X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fdebug%2Fdebug_types.h;h=e0013e2bf1259cd0ae1ee7d78e78ecb66a74dbbe;hb=3346bfc9a8e01a81bddab503664e0399d57e4d5e;hp=d260cba0d906a3fe67962c2f9171147e071d46b8;hpb=940ce98d2ca81d4f14772034b694dbd3a6b18566;p=simgear.git diff --git a/simgear/debug/debug_types.h b/simgear/debug/debug_types.h index d260cba0..e0013e2b 100644 --- a/simgear/debug/debug_types.h +++ b/simgear/debug/debug_types.h @@ -24,7 +24,10 @@ typedef enum { SG_CLIPPER = 0x00002000, SG_NETWORK = 0x00004000, SG_ATC = 0x00008000, - SG_UNDEFD = 0x00010000, // For range checking + SG_NASAL = 0x00010000, + SG_INSTR = 0x00020000, + SG_SYSTEMS = 0x00040000, + SG_UNDEFD = 0x00080000, // For range checking SG_ALL = 0xFFFFFFFF } sgDebugClass; @@ -34,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; +