Skip to content

Commit 4237525

Browse files
committed
Revert "feat: log invalid search path roots (#4772)"
This reverts commit 54426fe.
1 parent 54426fe commit 4237525

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

junit-platform-console/src/main/java/org/junit/platform/console/tasks/DiscoveryRequestCreator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private static Set<Path> validateAndLogInvalidRoots(Set<Path> roots) {
111111
boolean dirOrJar = isDirOrJar(root);
112112

113113
if (!exists || !readable || !dirOrJar) {
114-
logger.warn(
114+
logger.info(
115115
() -> "Ignoring invalid search path root: %s (exists=%s, readable=%s, dirOrJar=%s)".formatted(root,
116116
exists, readable, dirOrJar));
117117
continue;

0 commit comments

Comments
 (0)