diff --git a/src/debug.h b/src/debug.h index 5087efb4..26ca50e4 100644 --- a/src/debug.h +++ b/src/debug.h @@ -138,5 +138,14 @@ #define DEBUG_MDNS(...) DEBUG_OFF(__VA_ARGS__) #endif +#if (defined(SCHED_DEBUG) && SCHED_DEBUG) || \ + (defined(STUB_DEBUG) && STUB_DEBUG) || \ + (defined(DAEMON_DEBUG) && DAEMON_DEBUG) || \ + (defined(SEC_DEBUG) && SEC_DEBUG) || \ + (defined(SERVER_DEBUG) && SERVER_DEBUG) || \ + (defined(MDNS_DEBUG) && MDNS_DEBUG) +#define DEBUGGING 1 +#endif + #endif /* debug.h */