summaryrefslogtreecommitdiff
path: root/src/logger.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-06-24 13:29:41 +0100
committerSadie Powell <sadie@witchery.services>2024-06-24 13:30:17 +0100
commit6e5713d64a379fc64c7ff6658362d02b3618c3ca (patch)
tree013fe8b9831fb514502b7f07669929bd484ee45d /src/logger.cpp
parent249ad3dfea933310f10947cc03f6fe85ab116b81 (diff)
Remove the formatting overloads of SendNotice/SendPrivmsg.
Diffstat (limited to 'src/logger.cpp')
-rw-r--r--src/logger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logger.cpp b/src/logger.cpp
index 6290831be..677258009 100644
--- a/src/logger.cpp
+++ b/src/logger.cpp
@@ -364,7 +364,7 @@ void LogInfo::ProcessMessage(const Log *l)
if (!bi)
bi = c->WhoSends();
if (bi)
- IRCD->SendPrivmsg(bi, c->name, "%s", buffer.c_str());
+ IRCD->SendPrivmsg(bi, c->name, buffer);
}
}
else if (target == "globops")