summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2008-01-07 19:40:58 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2008-01-07 19:40:58 +0000
commitb998968bbbc9c4fa4fca0ead65d83669aca3e400 (patch)
treec054d07896f7fb187348169b415c68e15d9a5726
parentdd656fa477eff1903c114262d91469760900fc44 (diff)
downloadrdiff-backup-b998968bbbc9c4fa4fca0ead65d83669aca3e400.tar.gz
Be quieter about the xattr warnings
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@870 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/rdiff_backup/eas_acls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/eas_acls.py b/rdiff-backup/rdiff_backup/eas_acls.py
index 2ead1a1..25587d3 100644
--- a/rdiff-backup/rdiff_backup/eas_acls.py
+++ b/rdiff-backup/rdiff_backup/eas_acls.py
@@ -109,7 +109,7 @@ class ExtendedAttributes:
# fail gracefully if can't call setxattr
if exc[0] == errno.EOPNOTSUPP or exc[0] == errno.EACCES:
log.Log("Warning: unable to write xattr %s to %s"
- % (name, rp.path), 3)
+ % (name, rp.path), 6)
continue
else: raise