ae2016b987
DEBUG_IMPORT enables code to open/close loggers, but DEBUG_LOGGING enables code to write to it, so having only one of the two in debug_setup.mk makes little sense.
13 lines
313 B
Makefile
13 lines
313 B
Makefile
define writerfilter_debug_flags
|
|
$(if $(filter-out 0 1,$(strip $(gb_DEBUGLEVEL))),\
|
|
-DDEBUG_DOMAINMAPPER \
|
|
-DDEBUG_ELEMENT \
|
|
-DDEBUG_RESOLVE \
|
|
-DDEBUG_CONTEXT_STACK \
|
|
-DDEBUG_ATTRIBUTES \
|
|
-DDEBUG_PROPERTIES \
|
|
-DDEBUG_CONTEXT_HANDLER \
|
|
-DDEBUG_IMPORT \
|
|
-DDEBUG_LOGGING \
|
|
)
|
|
endef
|