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:
@@ -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];
|
||||
|
Reference in New Issue
Block a user