You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ja...@apache.org on 2021/11/29 08:27:18 UTC

[ant] branch master updated: reduce level of log message

This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git


The following commit(s) were added to refs/heads/master by this push:
     new e8db3b1  reduce level of log message
e8db3b1 is described below

commit e8db3b1010435c4c6c35dddadeb410df1ae08522
Author: Jaikiran Pai <ja...@apache.org>
AuthorDate: Mon Nov 29 13:56:56 2021 +0530

    reduce level of log message
---
 src/main/org/apache/tools/ant/taskdefs/SetPermissions.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/org/apache/tools/ant/taskdefs/SetPermissions.java b/src/main/org/apache/tools/ant/taskdefs/SetPermissions.java
index 9f17a1b..3e708f4 100644
--- a/src/main/org/apache/tools/ant/taskdefs/SetPermissions.java
+++ b/src/main/org/apache/tools/ant/taskdefs/SetPermissions.java
@@ -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) {