summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/logger.cpp4
-rw-r--r--src/logger.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/logger.cpp b/src/logger.cpp
index 12a51070d..a177b895e 100644
--- a/src/logger.cpp
+++ b/src/logger.cpp
@@ -25,7 +25,9 @@
#include <iostream>
#include <sstream>
+#ifdef ENABLEDEBUGLOG
#include "gui/widgets/tabs/chattab.h"
+#endif
#ifdef WIN32
#include <windows.h>
@@ -95,6 +97,7 @@ void Logger::log(const std::string &str)
log("%s", str.c_str());
}
+#ifdef ENABLEDEBUGLOG
void Logger::dlog(const std::string &str)
{
if (!mDebugLog)
@@ -118,6 +121,7 @@ void Logger::dlog(const std::string &str)
if (mChatWindow && debugChatTab)
debugChatTab->chatLog(str, BY_LOGGER);
}
+#endif
void Logger::log1(const char *const buf)
{
diff --git a/src/logger.h b/src/logger.h
index 8b484e8f5..90c3a689f 100644
--- a/src/logger.h
+++ b/src/logger.h
@@ -94,10 +94,12 @@ class Logger final
*/
void log(const std::string &str);
+#ifdef ENABLEDEBUGLOG
/**
* Enters debug message in the log. The message will be timestamped.
*/
void dlog(const std::string &str);
+#endif
void setDebugLog(const bool n)
{ mDebugLog = n; }