From 45f93138dd512cae7e9b879bd2e2fdc7b387e075 Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Mon, 14 Jan 2019 14:00:52 +0100 Subject: [PATCH] fix wrong logger->debug call --- libsrc/core/archive.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/core/archive.hpp b/libsrc/core/archive.hpp index b66c3187..9b715ef2 100644 --- a/libsrc/core/archive.hpp +++ b/libsrc/core/archive.hpp @@ -506,7 +506,7 @@ namespace ngcore // As stated above, we want this special behaviour only for our classes that implement DoArchive std::string name; (*this) & name; - logger->debug("Name = " + name); + logger->debug("Name = {}", name); auto info = GetArchiveRegister(name); // the creator creates a new object of type name, and returns a void* pointing // to T (which may have an offset)