fix wrong logger->debug call

This commit is contained in:
Christopher Lackner 2019-01-14 14:00:52 +01:00
parent 0a46569474
commit 45f93138dd

View File

@ -506,7 +506,7 @@ namespace ngcore
// As stated above, we want this special behaviour only for our classes that implement DoArchive // As stated above, we want this special behaviour only for our classes that implement DoArchive
std::string name; std::string name;
(*this) & name; (*this) & name;
logger->debug("Name = " + name); logger->debug("Name = {}", name);
auto info = GetArchiveRegister(name); auto info = GetArchiveRegister(name);
// the creator creates a new object of type name, and returns a void* pointing // the creator creates a new object of type name, and returns a void* pointing
// to T (which may have an offset) // to T (which may have an offset)