diff --git a/src/internfile/extrameta.cpp b/src/internfile/extrameta.cpp index b526f18f..fede2e54 100644 --- a/src/internfile/extrameta.cpp +++ b/src/internfile/extrameta.cpp @@ -50,7 +50,13 @@ void reapXAttrs(const RclConfig* cfg, const string& path, // Retrieve xattrs names from files and mapping table from config vector xnames; if (!pxattr::list(path, &xnames)) { - LOGERR(("FileInterner::reapXattrs: pxattr::list: errno %d\n", errno)); + if (errno == ENOTSUP) { + LOGDEB(("FileInterner::reapXattrs: pxattr::list: errno %d\n", + errno)); + } else { + LOGERR(("FileInterner::reapXattrs: pxattr::list: errno %d\n", + errno)); + } return; } const map& xtof = cfg->getXattrToField();