Skip to content

Commit

Permalink
Add missing space character to a log message (#5251)
Browse files Browse the repository at this point in the history
  • Loading branch information
tequdev authored Jan 23, 2025
1 parent 20710f5 commit 409c1d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrpld/app/tx/detail/Transactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 409c1d5

Please sign in to comment.