Skip to content

Commit

Permalink
'#1861: better error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lfcnassif committed Oct 26, 2023
1 parent 11123b3 commit 6e122a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public FileVisitResult postVisitDirectory(Path path, IOException exception) thro
public FileVisitResult visitFileFailed(Path path, IOException exception) throws IOException {

if (exception != null) {
logger.error("File ignored: " + path.toFile().getAbsolutePath() + ": " + exception.toString());
logger.error("File/Folder ignored: " + path.toFile().getAbsolutePath() + ": " + exception.toString());
}

return FileVisitResult.CONTINUE;
Expand Down

0 comments on commit 6e122a6

Please sign in to comment.