Browse Source

reduce level of log message

master
Jaikiran Pai 3 years ago
parent
commit
e8db3b1010
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/SetPermissions.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/SetPermissions.java View File

@@ -197,7 +197,7 @@ public class SetPermissions extends Task {
}

private void tryDos(Path p, boolean failIfDosIsNotSupported) {
log("Falling back to DosFileAttributeView");
log("Falling back to DosFileAttributeView", Project.MSG_DEBUG);
boolean readOnly = !isWritable();
DosFileAttributeView view = Files.getFileAttributeView(p, DosFileAttributeView.class);
if (view != null) {


Loading…
Cancel
Save