fixup: minor log string formatting changes (#2913)

* fixup! fix: sonarcloud (#2865)

fix: log time format string

* fix: formatting changes

* fixup! refactor: remove tr_strvJoin() (#2896)

fix: daemon logging

Co-authored-by: Catadropa <catadropa@users.noreply.github.com>
This commit is contained in:
Charles Kerr
2022-04-13 23:19:18 -05:00
committed by GitHub
parent ec57d10954
commit 5b6f0a52fd
4 changed files with 7 additions and 7 deletions

View File

@@ -340,8 +340,8 @@ static void printMessage(
std::string_view filename,
int line)
{
auto const out = std::empty(name) ? fmt::format(FMT_STRING("{:s} ({:s}:{:d}"), message, filename, line) :
fmt::format(FMT_STRING("{:s} {:s} ({:s}:{:d}"), name, message, filename, line);
auto const out = std::empty(name) ? fmt::format(FMT_STRING("{:s} ({:s}:{:d})"), message, filename, line) :
fmt::format(FMT_STRING("{:s} {:s} ({:s}:{:d})"), name, message, filename, line);
if (file != TR_BAD_SYS_FILE)
{