Skip to content

Commit

Permalink
Improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Naton1 committed Aug 13, 2022
1 parent 382e8d1 commit 6203a76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public void waitUntil(Runnable action, long timeoutMs) throws RuntimeException {
return true;
}
catch (Exception e) {
log.debug("Test attempt failed with {}", e.getClass() + ": " + e.getMessage());
log.debug("Test attempt failed with {}", e.getClass().getName() + ": " + e.getMessage());
return false;
}
}, timeoutMs);
Expand Down

0 comments on commit 6203a76

Please sign in to comment.