1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-22 16:57:12 +02:00

Move away from C format to cpp::fmt.

This commit is contained in:
Sandu Liviu Catalin
2021-02-03 17:50:39 +02:00
parent 09a1767ffe
commit 0de21ae5a0
39 changed files with 215 additions and 215 deletions

View File

@@ -354,7 +354,7 @@ void Logger::BindCb(uint8_t level, Function & func)
// Is the log level valid?
if (idx > 6)
{
STHROWF("Out of range log level index: %d > 4", int(idx));
STHROWF("Out of range log level index: {} > 4", int(idx));
}
// Obtain the function instance called for this log level
Function & cb = m_LogCb[idx];