Change warning to debug, see #658

This commit is contained in:
Markus Unterwaditzer 2017-08-12 17:01:47 +02:00
parent 629de5558d
commit 395e8276de

View file

@ -580,8 +580,8 @@ class DAVStorage(Storage):
props = response.findall('{DAV:}propstat/{DAV:}prop')
if props is None or not len(props):
dav_logger.warning('Skipping {!r}, properties are missing.'
.format(href))
dav_logger.debug('Skipping {!r}, properties are missing.'
.format(href))
continue
else:
props = _merge_xml(props)
@ -592,8 +592,8 @@ class DAVStorage(Storage):
etag = getattr(props.find('{DAV:}getetag'), 'text', '')
if not etag:
dav_logger.warning('Skipping {!r}, etag property is missing.'
.format(href))
dav_logger.debug('Skipping {!r}, etag property is missing.'
.format(href))
continue
contenttype = getattr(props.find('{DAV:}getcontenttype'),