]> arthur.barton.de Git - netatalk.git/blobdiff - libatalk/acl/unix.c
Reduce log clutter
[netatalk.git] / libatalk / acl / unix.c
index 0d03488e2e8ee68801274bd6b0cde73c05fcc263..6284935173d87c7cced42ce80419977cc1df40f8 100644 (file)
@@ -48,7 +48,7 @@ int get_nfsv4_acl(const char *name, ace_t **retAces)
     *retAces = NULL;
     /* Only call acl() for regular files and directories, otherwise just return 0 */
     if (lstat(name, &st) != 0) {
-        LOG(log_warning, logtype_afpd, "get_nfsv4_acl(\"%s/%s\"): %s", getcwdpath(), name, strerror(errno));
+        LOG(log_debug, logtype_afpd, "get_nfsv4_acl(\"%s/%s\"): %s", getcwdpath(), name, strerror(errno));
         return -1;
     }