]> arthur.barton.de Git - netatalk.git/commitdiff
debug instead of error message
authorFrank Lahm <franklahm@googlemail.com>
Tue, 31 Jan 2012 14:06:39 +0000 (15:06 +0100)
committerFrank Lahm <franklahm@googlemail.com>
Tue, 31 Jan 2012 14:06:39 +0000 (15:06 +0100)
libatalk/adouble/ad_open.c

index 72250de8034caca1cacf9422870e0ad2ee0f87a6..d9c364c63876202330f1688bfb8590de88d25fbd 100644 (file)
@@ -970,7 +970,7 @@ static int ad_open_hf_ea(const char *path, int adflags, int mode, struct adouble
     /* Read the adouble header in and parse it.*/
     if (ad->ad_ops->ad_header_read(path, ad, NULL) != 0) {
         if (!(adflags & ADFLAGS_CREATE)) {
-            LOG(log_error, logtype_default, "ad_open_hf_ea(\"%s\"): can't read metadata EA", path);
+            LOG(log_debug, logtype_default, "ad_open_hf_ea(\"%s\"): can't read metadata EA", path);
             errno = ENOENT;
             EC_FAIL;
         }