Skip to content

Commit 3b7428a

Browse files
committed
[grid] Switching to fine log level when clearing caches in LocalNode
1 parent 5ba17d6 commit 3b7428a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

java/src/org/openqa/selenium/grid/node/local/LocalNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,15 +223,15 @@ protected LocalNode(
223223
.ifPresent(
224224
value -> {
225225
downloadsTempFileSystem.invalidate(value);
226-
LOG.warning(
226+
LOG.fine(
227227
"Removing Downloads folder associated with "
228228
+ notification.getKey());
229229
});
230230
Optional.ofNullable(notification.getKey())
231231
.ifPresent(
232232
value -> {
233233
uploadsTempFileSystem.invalidate(value);
234-
LOG.warning(
234+
LOG.fine(
235235
"Removing Uploads folder associated with "
236236
+ notification.getKey());
237237
});

0 commit comments

Comments
 (0)