mirror of
https://github.com/transmission/transmission.git
synced 2025-12-20 02:18:42 +00:00
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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user