Add missing space character to a log message (#5251)

This commit is contained in:
tequ
2025-01-24 05:08:14 +09:00
committed by GitHub
parent 20710f5232
commit 409c1d5aa2

View File

@@ -1069,7 +1069,7 @@ Transactor::operator()()
ctx_.apply(result);
}
JLOG(j_.trace()) << (applied ? "applied" : "not applied")
JLOG(j_.trace()) << (applied ? "applied " : "not applied ")
<< transToken(result);
return {result, applied};