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_hidemode.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_hidemode.cpp')
| -rw-r--r-- | src/modules/m_hidemode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_hidemode.cpp b/src/modules/m_hidemode.cpp index 8d6127d35..c01060580 100644 --- a/src/modules/m_hidemode.cpp +++ b/src/modules/m_hidemode.cpp @@ -53,7 +53,7 @@ public: if (!rank) throw ModuleException(mod, "<hidemode:rank> must be greater than 0 at " + tag->source.str()); - ServerInstance->Logs.Debug(MODNAME, "Hiding the %s mode from users below rank %lu", modename.c_str(), rank); + ServerInstance->Logs.Debug(MODNAME, "Hiding the {} mode from users below rank {}", modename, rank); newranks.emplace(modename, rank); } rankstosee.swap(newranks); |
