Skip to content

Commit 569bf02

Browse files
committed
add info log to find all kw
1 parent 7e0cf17 commit 569bf02

File tree

1 file changed

+2
-0
lines changed
  • src/main/java/javafxlibrary/keywords/AdditionalKeywords

1 file changed

+2
-0
lines changed

src/main/java/javafxlibrary/keywords/AdditionalKeywords/Find.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ public Object find(String query, boolean failIfNotFound, Parent root) {
7272
@ArgumentNames({"query", "failIfNotFound=False", "root="})
7373
public List<Object> findAll(String query, boolean failIfNotFound, Parent root) {
7474
try {
75+
RobotLog.info("Trying to find all nodes matching the query: \"" + query + "\", failIfNotFound=\"" +
76+
failIfNotFound + "\", root=\"" + root + "\"");
7577
if (root != null) {
7678
return mapObjects(new Finder().findAll(query, root));
7779
} else {

0 commit comments

Comments
 (0)