Fix log messages

This commit is contained in:
Georg Hagen
2024-08-04 14:27:24 +02:00
parent 933219c266
commit a4ce79f17a

View File

@@ -159,12 +159,12 @@ namespace OpenVulkano
}
else
{
Logger::MANAGER->error("Cannot find constructor for named event %s", eventName);
Logger::MANAGER->error("Cannot find constructor for named event {}", eventName);
}
}
else
{
Logger::MANAGER->debug("Cannot find implementation for named event %s", eventName);
Logger::MANAGER->debug("Cannot find implementation for named event {}", eventName);
}
}
}