From 0bd5bcc6929267f6bbfcd5332d0fc9fb3cd6cfa5 Mon Sep 17 00:00:00 2001 From: tequ Date: Fri, 20 Feb 2026 03:33:37 +0900 Subject: [PATCH] Add missing space character to a log message (#5251) --- src/xrpld/app/tx/detail/Transactor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrpld/app/tx/detail/Transactor.cpp b/src/xrpld/app/tx/detail/Transactor.cpp index 1ca96e597..8ec260ed8 100644 --- a/src/xrpld/app/tx/detail/Transactor.cpp +++ b/src/xrpld/app/tx/detail/Transactor.cpp @@ -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};