From: Frank Lahm Date: Tue, 31 Jan 2012 14:06:39 +0000 (+0100) Subject: debug instead of error message X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=318ead7457ffeb624902d2d95b6375346c89c999;hp=37038ea7fd28166bcdc088f7c45f3cf5f5366d07;p=netatalk.git debug instead of error message --- diff --git a/libatalk/adouble/ad_open.c b/libatalk/adouble/ad_open.c index 72250de8..d9c364c6 100644 --- a/libatalk/adouble/ad_open.c +++ b/libatalk/adouble/ad_open.c @@ -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; }