aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index d15005804..9afefcc7c 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -656,7 +656,10 @@ void ConfigReaderThread::OnStop()
}
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.");
+ {
+ for (auto* luser : ServerInstance->Users.GetLocalUsers())
+ luser->WriteNotice("*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.");
+ }
Config = old;
}