From 0abae85cc3394f98375944b47fa6724f81552646 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Tue, 3 Mar 2015 02:10:44 +0100 Subject: [PATCH] Don't print messages with Logger::Level::DEBUG in release build and deal with Debug X Release configurations properly in qmakefile. --- Anyanka.pro | 17 ++++++++++------- logger.cpp | 4 ++++ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Anyanka.pro b/Anyanka.pro index d7ad74f..a63b9b6 100644 --- a/Anyanka.pro +++ b/Anyanka.pro @@ -20,6 +20,16 @@ win32 { INCLUDEPATH += "./" } +DEFINES += _HPCS_LITTLE_ENDIAN + +CONFIG(debug, debug|release) { + DEFINES += ANYANKA_DEBUG + message("Debug build") +} else { + DEFINES += NDEBUG + message("Release build") +} + SOURCES += main.cpp\ datafilesloader.cpp \ datamanager.cpp \ @@ -98,10 +108,3 @@ FORMS += \ RESOURCES += \ imgresources.qrc - -DEFINES += _HPCS_LITTLE_ENDIAN - -CONFIG(release) -{ - DEFINES += NDEBUG -} diff --git a/logger.cpp b/logger.cpp index e153eed..b38d9b9 100644 --- a/logger.cpp +++ b/logger.cpp @@ -60,6 +60,10 @@ const QString Logger::levelToString(Level level) void Logger::log(Level level, const QString& sender, const QString& message, bool suppressPrint) { +#ifndef ANYANKA_DEBUG + if (level == Logger::Level::DEBUG) + return; +#endif LoggedInfo li = std::make_tuple(QDateTime::currentMSecsSinceEpoch(), level, sender, message); s_globalInstance->m_lock.lock(); s_globalInstance->m_logged.push_back(li); -- 2.43.5