Skip to content

Commit 1d8b9b8

Browse files
committed
Improve log message
1 parent 457bf81 commit 1d8b9b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • toolkit-fx/src/main/java/com/techsenger/toolkit/fx/utils

toolkit-fx/src/main/java/com/techsenger/toolkit/fx/utils/NodeUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static ArrayList<Node> getAllNodes(final Parent parent) {
7171

7272
private static void requestFocusWithCounter(Node node, Runnable onSuccess, int attempt) {
7373
if (attempt >= MAX_FOCUS_ATTEMPTS) {
74-
logger.debug("Couldn't request focus for {}", node.getClass());
74+
logger.debug("Couldn't request focus for {}", node);
7575
return;
7676
}
7777
Platform.runLater(() -> {

0 commit comments

Comments
 (0)