add newline for NET_PrintFunc on wconsole

This commit is contained in:
rexx 2021-08-09 11:16:30 +01:00
parent 828a214abe
commit ebc10a9769

View File

@ -30,7 +30,7 @@ void Hooks::NET_PrintFunc(const char* fmt, ...)
iconsole = std::make_shared<spdlog::logger>("ostream", ostream_sink);
iconsole->set_pattern("[%S.%e] %v");
iconsole->set_level(spdlog::level::debug);
wconsole->set_pattern("[%S.%e] %v");
wconsole->set_pattern("[%S.%e] %v\n");
wconsole->set_level(spdlog::level::debug);
initialized = true;
}