Add a POCO_LOG_DEBUG flag

If the POCO_LOG_DEBUG is defined the poco_trace* and the poco_debug*
produce logs even if the _DEBUG flag is not set.
This makes the macros usable for applications that need to enable
higher log levels later at run time.
This commit is contained in:
Pascal Bach
2014-04-11 13:54:02 +02:00
parent fe6bf63656
commit e98ad37401
2 changed files with 5 additions and 1 deletions

View File

@@ -181,5 +181,9 @@
#define POCO_NO_LOCALE
#endif
// Enable the poco_debug_* and poco_trace_* macros
// even if the _DEBUG variable is not set.
// This allows the use of these macros in a release version.
// #define POCO_LOG_DEBUG
#endif // Foundation_Config_INCLUDED