Core/Logging: Fixed remaining uses of STRING_VIEW_FMT in log statements

This commit is contained in:
Shauren
2023-01-10 19:12:00 +01:00
parent 0b948b758f
commit eab14dc66a
2 changed files with 6 additions and 6 deletions

View File

@@ -129,12 +129,12 @@ static int CreateChildProcess(T waiter, std::string const& executable,
auto outInfo = MakeTCLogSink([&](std::string_view msg)
{
TC_LOG_INFO(logger, STRING_VIEW_FMT, STRING_VIEW_FMT_ARG(msg));
TC_LOG_INFO(logger, "{}", msg);
});
auto outError = MakeTCLogSink([&](std::string_view msg)
{
TC_LOG_ERROR(logger, STRING_VIEW_FMT, STRING_VIEW_FMT_ARG(msg));
TC_LOG_ERROR(logger, "{}", msg);
});
copy(outStream, outInfo);