aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_httpd_stats.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-01-23 23:48:09 +0000
committerGravatar Sadie Powell2023-01-24 00:12:57 +0000
commit206d31de85192353d03c74766e80513a87dc49b4 (patch)
tree24fdee802c85c29b66a04901147d019e92e30931 /src/modules/m_httpd_stats.cpp
parentConvert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings. (diff)
downloadinspircd++-206d31de85192353d03c74766e80513a87dc49b4.tar.gz
inspircd++-206d31de85192353d03c74766e80513a87dc49b4.tar.bz2
inspircd++-206d31de85192353d03c74766e80513a87dc49b4.zip
Convert log calls to use fmtlib format strings
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
-rw-r--r--src/modules/m_httpd_stats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index 0be3f09d4..06efed523 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -476,7 +476,7 @@ public:
if (request.GetPath().compare(0, 6, "/stats"))
return MOD_RES_PASSTHRU;
- ServerInstance->Logs.Debug(MODNAME, "Handling HTTP request for %s", request.GetPath().c_str());
+ ServerInstance->Logs.Debug(MODNAME, "Handling HTTP request for {}", request.GetPath());
Stats::XMLSerializer serializer;
serializer.BeginBlock("inspircdstats");