Skip to content

Commit

Permalink
Enhanced log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
seregamorph committed Dec 27, 2024
1 parent 4a859aa commit 06b7420
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public void afterTestClass(TestContext testContext) {
try {
Class<?> testClass = testContext.getTestClass();
if (SmartDirtiesTestsHolder.isLastClassPerConfig(testClass)) {
LOG.info("markDirty " + testClass.getName());
LOG.info("markDirty (closing context) after " + testClass.getName());
testContext.markApplicationContextDirty(null);
} else {
LOG.debug("Non-dirty " + testClass.getName());
LOG.debug("Reusing context after " + testClass.getName());
}
} finally {
// pop Nested classes
Expand Down

0 comments on commit 06b7420

Please sign in to comment.