File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/engineering/swat/watch/impl/overflows Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,22 +65,22 @@ public void walkFileTree() {
6565 try {
6666 Files .walkFileTree (path , options , maxDepth , this );
6767 } catch (IOException e ) {
68- logger .error ( "Could not walk: {} ({})" , path , e );
68+ logger .debug ( "Overflow rescanner could not walk: {} ({})" , path , e );
6969 }
7070 }
7171
7272 // -- SimpleFileVisitor --
7373
7474 @ Override
7575 public FileVisitResult visitFileFailed (Path file , IOException exc ) throws IOException {
76- logger .error ( "Could not walk regular file: {} ({})" , file , exc );
76+ logger .debug ( "Overflow rescanner could not walk regular file: {} ({})" , file , exc );
7777 return FileVisitResult .CONTINUE ;
7878 }
7979
8080 @ Override
8181 public FileVisitResult postVisitDirectory (Path dir , IOException exc ) throws IOException {
8282 if (exc != null ) {
83- logger .error ( "Could not walk directory: {} ({})" , dir , exc );
83+ logger .debug ( "Overflow rescanner could not walk directory: {} ({})" , dir , exc );
8484 }
8585 return FileVisitResult .CONTINUE ;
8686 }
You can’t perform that action at this time.
0 commit comments