sys: Fixed logging to file omitting all tags and new lines

This commit is contained in:
WerWolv
2022-02-16 21:31:47 +01:00
parent 7117592f38
commit 90753f4d42
2 changed files with 16 additions and 8 deletions

View File

@@ -314,7 +314,7 @@ namespace hex {
namespace ContentRegistry::DataProcessorNode {
void impl::add(const impl::Entry &entry) {
log::info("Registered new data processor node type: [{}]: ", entry.category, entry.name);
log::info("Registered new data processor node type: [{}]: {}", entry.category, entry.name);
getEntries().push_back(entry);
}