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

This commit is contained in:
tequ
2025-01-24 05:08:14 +09:00
parent 6775cd59a6
commit 606ca86627

View File

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