summaryrefslogtreecommitdiff
path: root/src/gui/widgets/chattab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/chattab.cpp')
-rw-r--r--src/gui/widgets/chattab.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/gui/widgets/chattab.cpp b/src/gui/widgets/chattab.cpp
index 3ab9594fe..41b57c035 100644
--- a/src/gui/widgets/chattab.cpp
+++ b/src/gui/widgets/chattab.cpp
@@ -445,8 +445,18 @@ bool ChatTab::handleCommands(const std::string &type, const std::string &args)
void ChatTab::saveToLogFile(const std::string &msg)
{
- if (getType() == TAB_INPUT && chatLogger)
- chatLogger->log(msg);
+ if (chatLogger)
+ {
+ if (getType() == TAB_INPUT)
+ {
+ chatLogger->log(msg);
+ }
+ else if (getType() == TAB_DEBUG
+ && config.getBoolValue("enableDebugLog"))
+ {
+ chatLogger->log("#Debug", msg);
+ }
+ }
}
int ChatTab::getType() const