diff options
| author | 2023-01-23 23:48:09 +0000 | |
|---|---|---|
| committer | 2023-01-24 00:12:57 +0000 | |
| commit | 206d31de85192353d03c74766e80513a87dc49b4 (patch) | |
| tree | 24fdee802c85c29b66a04901147d019e92e30931 /src/listmode.cpp | |
| parent | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings. (diff) | |
Convert log calls to use fmtlib format strings
Diffstat (limited to 'src/listmode.cpp')
| -rw-r--r-- | src/listmode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/listmode.cpp b/src/listmode.cpp index 01f70836a..a350c4ad5 100644 --- a/src/listmode.cpp +++ b/src/listmode.cpp @@ -94,8 +94,8 @@ void ListModeBase::DoRehash() // If no default limit has been specified then insert one. if (!seen_default) { - ServerInstance->Logs.Warning("MODE", "No default <maxlist> entry was found for the %s mode; defaulting to %u", - name.c_str(), DEFAULT_LIST_SIZE); + ServerInstance->Logs.Warning("MODE", "No default <maxlist> entry was found for the {} mode; defaulting to {}", + name, DEFAULT_LIST_SIZE); newlimits.push_back(ListLimit("*", DEFAULT_LIST_SIZE)); } |
