summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2008-11-13 02:08:30 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2008-11-13 02:08:30 +0000
commitbb227068e6cde3d999ef9336eedc5e93d2595a7b (patch)
tree4270b2c8a0914450fcd61963b664e37222d22367
parent7bf31a4c2913be2d627ca08b38d407678bd85ae7 (diff)
downloadrdiff-backup-bb227068e6cde3d999ef9336eedc5e93d2595a7b.tar.gz
Throttle verbosity of listattr() warnings
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@964 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/CHANGELOG2
-rw-r--r--rdiff-backup/rdiff_backup/eas_acls.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index 917fc50..39e1250 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -1,6 +1,8 @@
New in v1.2.3 (????/??/??)
---------------------------
+Throttle verbosity of listattr() warning messages from 3 to 4. (Andrew Ferguson)
+
Escape trailing spaces and periods on systems which require it, such as
Windows and modern Linux with FAT32. (Andrew Ferguson)
diff --git a/rdiff-backup/rdiff_backup/eas_acls.py b/rdiff-backup/rdiff_backup/eas_acls.py
index 54ed2d2..02f163c 100644
--- a/rdiff-backup/rdiff_backup/eas_acls.py
+++ b/rdiff-backup/rdiff_backup/eas_acls.py
@@ -62,7 +62,7 @@ class ExtendedAttributes:
if exc[0] in (errno.EOPNOTSUPP, errno.EPERM, errno.ETXTBSY):
return # if not supported, consider empty
if exc[0] in (errno.EACCES, errno.ENOENT, errno.ELOOP):
- log.Log("Warning: listattr(%s): %s" % (repr(rp.path), exc), 3)
+ log.Log("Warning: listattr(%s): %s" % (repr(rp.path), exc), 4)
return
raise
for attr in attr_list: