src/debug.cpp
changeset 5915 a39082f82ea2
parent 5835 e0ff603ae0b7
child 6210 717cc12ac0a9
equal deleted inserted replaced
5914:e4ed5c532514 5915:a39082f82ea2
    21 int _debug_ntp_level;
    21 int _debug_ntp_level;
    22 int _debug_npf_level;
    22 int _debug_npf_level;
    23 int _debug_yapf_level;
    23 int _debug_yapf_level;
    24 int _debug_freetype_level;
    24 int _debug_freetype_level;
    25 int _debug_sl_level;
    25 int _debug_sl_level;
       
    26 int _debug_station_level;
    26 
    27 
    27 
    28 
    28 typedef struct DebugLevel {
    29 typedef struct DebugLevel {
    29 	const char *name;
    30 	const char *name;
    30 	int *level;
    31 	int *level;
    44 	DEBUG_LEVEL(ntp),
    45 	DEBUG_LEVEL(ntp),
    45 	DEBUG_LEVEL(npf),
    46 	DEBUG_LEVEL(npf),
    46 	DEBUG_LEVEL(yapf),
    47 	DEBUG_LEVEL(yapf),
    47 	DEBUG_LEVEL(freetype),
    48 	DEBUG_LEVEL(freetype),
    48 	DEBUG_LEVEL(sl),
    49 	DEBUG_LEVEL(sl),
       
    50 	DEBUG_LEVEL(station),
    49 	};
    51 	};
    50 #undef DEBUG_LEVEL
    52 #undef DEBUG_LEVEL
    51 
    53 
    52 #if !defined(NO_DEBUG_MESSAGES)
    54 #if !defined(NO_DEBUG_MESSAGES)
    53 
    55