diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-11-01 12:50:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-11-01 21:33:36 +0300 |
commit | 1c04a68a1604bf59dd2c33195f9f3fb2207a91e2 (patch) | |
tree | 7f3dd777179a1e1585600ea40d7667a8d3d827a6 /src/logger.cpp | |
parent | a1ca5e04b60902f84eb5da7d5e212ecf66d7f3e6 (diff) | |
download | plus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.tar.gz plus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.tar.bz2 plus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.tar.xz plus-1c04a68a1604bf59dd2c33195f9f3fb2207a91e2.zip |
remove log to chat from logger.
Diffstat (limited to 'src/logger.cpp')
-rw-r--r-- | src/logger.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index a177b895e..953c9488b 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -25,10 +25,6 @@ #include <iostream> #include <sstream> -#ifdef ENABLEDEBUGLOG -#include "gui/widgets/tabs/chattab.h" -#endif - #ifdef WIN32 #include <windows.h> #elif defined __APPLE__ @@ -67,7 +63,6 @@ Logger::Logger() : mLogFile(), mLogToStandardOut(true), - mChatWindow(nullptr), mDebugLog(false) { } @@ -117,9 +112,6 @@ void Logger::dlog(const std::string &str) if (mLogToStandardOut) std::cout << timeStr.str() << str << std::endl; - - if (mChatWindow && debugChatTab) - debugChatTab->chatLog(str, BY_LOGGER); } #endif @@ -139,9 +131,6 @@ void Logger::log1(const char *const buf) if (mLogToStandardOut) std::cout << timeStr.str() << buf << std::endl; - - if (mChatWindow && debugChatTab) - debugChatTab->chatLog(buf, BY_LOGGER); } void Logger::log(const char *const log_text, ...) @@ -174,9 +163,6 @@ void Logger::log(const char *const log_text, ...) if (mLogToStandardOut) std::cout << timeStr.str() << buf << std::endl; - if (mChatWindow && debugChatTab) - debugChatTab->chatLog(buf, BY_LOGGER); - // Delete temporary buffer delete [] buf; } |