don't disable wxLogTrace() at debug levels < 2

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-03-23 10:42:17 +00:00
parent f70cea2bdc
commit 9d2214dd07

View File

@@ -66,9 +66,9 @@ typedef unsigned long wxLogLevel;
// wxUSE_LOG_TRACE enables the trace messages, they are disabled by default // wxUSE_LOG_TRACE enables the trace messages, they are disabled by default
#ifndef wxUSE_LOG_TRACE #ifndef wxUSE_LOG_TRACE
#if wxDEBUG_LEVEL >= 2 #if wxDEBUG_LEVEL
#define wxUSE_LOG_TRACE 1 #define wxUSE_LOG_TRACE 1
#else // wxDEBUG_LEVEL < 2 #else // !wxDEBUG_LEVEL
#define wxUSE_LOG_TRACE 0 #define wxUSE_LOG_TRACE 0
#endif #endif
#endif // wxUSE_LOG_TRACE #endif // wxUSE_LOG_TRACE