From 6203a76ba8127d9c054b6a117c7d50980accb04e Mon Sep 17 00:00:00 2001 From: Naton1 <28943608+Naton1@users.noreply.github.com> Date: Fri, 12 Aug 2022 19:31:16 -0700 Subject: [PATCH] Improve logging --- .../naton1/jvmexplorer/integration/helper/FxRobotPlus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/src/integration/java/com/github/naton1/jvmexplorer/integration/helper/FxRobotPlus.java b/explorer/src/integration/java/com/github/naton1/jvmexplorer/integration/helper/FxRobotPlus.java index 0d3b79e..c11fa93 100644 --- a/explorer/src/integration/java/com/github/naton1/jvmexplorer/integration/helper/FxRobotPlus.java +++ b/explorer/src/integration/java/com/github/naton1/jvmexplorer/integration/helper/FxRobotPlus.java @@ -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);