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

This commit is contained in:
tequ
2026-02-20 03:33:37 +09:00
parent 979fb40073
commit 0bd5bcc692

View File

@@ -2251,7 +2251,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};