diff options
author | Shauren <shauren.trinity@gmail.com> | 2023-01-10 19:12:00 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2023-01-10 19:15:10 +0100 |
commit | eab14dc66ad939372f45f934d0921129b931cf2a (patch) | |
tree | c44f3d118074fc69bfa8dda967a657b612e117c6 /src/common/Utilities/StartProcess.cpp | |
parent | 0b948b758f7438bae9abfbe56b39bee717c32d3b (diff) |
Core/Logging: Fixed remaining uses of STRING_VIEW_FMT in log statements
Diffstat (limited to 'src/common/Utilities/StartProcess.cpp')
-rw-r--r-- | src/common/Utilities/StartProcess.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Utilities/StartProcess.cpp b/src/common/Utilities/StartProcess.cpp index fc0dd54557f..dc4fc4e7646 100644 --- a/src/common/Utilities/StartProcess.cpp +++ b/src/common/Utilities/StartProcess.cpp @@ -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); |