From d224691d0772448420b3fa837fc0088a0dc8b886 Mon Sep 17 00:00:00 2001 From: Francesco Chemolli Date: Sat, 10 Nov 2012 22:00:41 +0100 Subject: [PATCH] Fixed issue introduced by debugs() change --- src/Debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Debug.h b/src/Debug.h index 7c092e0162..a117d85f42 100644 --- a/src/Debug.h +++ b/src/Debug.h @@ -108,7 +108,7 @@ const char * SkipBuildPrefix(const char* path); do { \ if ((Debug::level = (LEVEL)) <= Debug::Levels[SECTION]) { \ std::ostream &_dbo=Debug::getDebugOut(); \ - if (LEVEL > DBG_IMPORTANT) \ + if (Debug::level > DBG_IMPORTANT) \ _dbo << SkipBuildPrefix(__FILE__)<<"("<<__LINE__<<") "<<__FUNCTION__<<": "; \ _dbo << CONTENT; \ Debug::finishDebug(); \ -- 2.47.2