diff options
| author | 2023-01-23 23:48:09 +0000 | |
|---|---|---|
| committer | 2023-01-24 00:12:57 +0000 | |
| commit | 206d31de85192353d03c74766e80513a87dc49b4 (patch) | |
| tree | 24fdee802c85c29b66a04901147d019e92e30931 /src/modules/m_chanlog.cpp | |
| parent | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings. (diff) | |
Convert log calls to use fmtlib format strings
Diffstat (limited to 'src/modules/m_chanlog.cpp')
| -rw-r--r-- | src/modules/m_chanlog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_chanlog.cpp b/src/modules/m_chanlog.cpp index 46cf98205..b46384067 100644 --- a/src/modules/m_chanlog.cpp +++ b/src/modules/m_chanlog.cpp @@ -57,7 +57,7 @@ public: for (const auto snomask : snomasks) { newlogs.emplace(snomask, channel); - ServerInstance->Logs.Normal(MODNAME, "Logging %c to %s", snomask, channel.c_str()); + ServerInstance->Logs.Normal(MODNAME, "Logging {} to {}", snomask, channel); } } logstreams.swap(newlogs); |
