Skip to content

Commit 3e5946d

Browse files
committed
Polish log statements for TransactionContext
1 parent 7808996 commit 3e5946d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-test/src/main/java/org/springframework/test/context/transaction/TransactionContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ void endTransaction() {
132132
}
133133

134134
if (logger.isInfoEnabled()) {
135-
logger.info(String.format("%s transaction after test execution for test context %s.",
136-
(flaggedForRollback ? "Rolled back" : "Committed"), this.testContext));
135+
logger.info(String.format("%s transaction for test context %s.", (flaggedForRollback ? "Rolled back"
136+
: "Committed"), this.testContext));
137137
}
138138
}
139139

0 commit comments

Comments
 (0)