aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-03-22 18:37:31 -0500
committerGravatar Daniel De Graaf2010-08-03 17:32:41 -0400
commit07ce9ccd8be096d242fbd9857040971e2a5712f5 (patch)
tree2bc173c619ae191a15ff318581d4597e31545151 /src/configreader.cpp
parentFix rehash unloading AllModule (diff)
Don't repeat the Raw I/O log message on every rehash
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 790ecb55b..4f3e76352 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -819,7 +819,7 @@ void ConfigReaderThread::Finish()
ServerInstance->Logs->CloseLogs();
ServerInstance->Logs->OpenFileLogs();
- if (Config->RawLog)
+ if (Config->RawLog && !old->RawLog)
ServerInstance->Users->ServerNoticeAll("*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.");
Config = old;