Skip to content

Commit

Permalink
debug TC failure
Browse files Browse the repository at this point in the history
  • Loading branch information
joc-a committed Aug 30, 2023
1 parent 7bafedf commit 1fac540
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,11 @@ class JoinTests : DatabaseTestsBase() {
.getOrNull(JoinTable.data)

// Assert no logging took place
println("Printing ${testAppender.getLog().size} logevents")
testAppender.getLog().forEachIndexed { index, logEvent ->
println("LogEvent $index: level ${logEvent.level}, message ${logEvent.message}, $logEvent")
}
println("End of logevents")
assertTrue(testAppender.getLog().none { it.level == Level.WARN })
}
}
Expand Down

0 comments on commit 1fac540

Please sign in to comment.