We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 457bf81 commit 1d8b9b8Copy full SHA for 1d8b9b8
1 file changed
toolkit-fx/src/main/java/com/techsenger/toolkit/fx/utils/NodeUtils.java
@@ -71,7 +71,7 @@ public static ArrayList<Node> getAllNodes(final Parent parent) {
71
72
private static void requestFocusWithCounter(Node node, Runnable onSuccess, int attempt) {
73
if (attempt >= MAX_FOCUS_ATTEMPTS) {
74
- logger.debug("Couldn't request focus for {}", node.getClass());
+ logger.debug("Couldn't request focus for {}", node);
75
return;
76
}
77
Platform.runLater(() -> {
0 commit comments