mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Change warning to debug, see #658
This commit is contained in:
parent
629de5558d
commit
395e8276de
1 changed files with 4 additions and 4 deletions
|
|
@ -580,8 +580,8 @@ class DAVStorage(Storage):
|
||||||
|
|
||||||
props = response.findall('{DAV:}propstat/{DAV:}prop')
|
props = response.findall('{DAV:}propstat/{DAV:}prop')
|
||||||
if props is None or not len(props):
|
if props is None or not len(props):
|
||||||
dav_logger.warning('Skipping {!r}, properties are missing.'
|
dav_logger.debug('Skipping {!r}, properties are missing.'
|
||||||
.format(href))
|
.format(href))
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
props = _merge_xml(props)
|
props = _merge_xml(props)
|
||||||
|
|
@ -592,8 +592,8 @@ class DAVStorage(Storage):
|
||||||
|
|
||||||
etag = getattr(props.find('{DAV:}getetag'), 'text', '')
|
etag = getattr(props.find('{DAV:}getetag'), 'text', '')
|
||||||
if not etag:
|
if not etag:
|
||||||
dav_logger.warning('Skipping {!r}, etag property is missing.'
|
dav_logger.debug('Skipping {!r}, etag property is missing.'
|
||||||
.format(href))
|
.format(href))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
contenttype = getattr(props.find('{DAV:}getcontenttype'),
|
contenttype = getattr(props.find('{DAV:}getcontenttype'),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue