mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
add logging around upload
This commit is contained in:
parent
c09a098866
commit
ec391e19b6
1 changed files with 4 additions and 0 deletions
|
@ -26,6 +26,7 @@ import posixpath
|
||||||
from typing import Any, Callable, ClassVar, Iterable, List, Optional, Tuple
|
from typing import Any, Callable, ClassVar, Iterable, List, Optional, Tuple
|
||||||
|
|
||||||
import defusedxml.ElementTree as DefusedET
|
import defusedxml.ElementTree as DefusedET
|
||||||
|
import logging
|
||||||
import vobject
|
import vobject
|
||||||
|
|
||||||
from radicale import storage, xmlutils
|
from radicale import storage, xmlutils
|
||||||
|
@ -764,10 +765,13 @@ permissions: RrWw""")
|
||||||
status, _, = self.delete(path, check=None)
|
status, _, = self.delete(path, check=None)
|
||||||
assert status in (200, 404)
|
assert status in (200, 404)
|
||||||
create_collection_fn(path)
|
create_collection_fn(path)
|
||||||
|
logging.warning("Upload items %r", items)
|
||||||
for i in items:
|
for i in items:
|
||||||
|
logging.warning("Upload %d", i)
|
||||||
filename = filename_template % (kind, i)
|
filename = filename_template % (kind, i)
|
||||||
event = get_file_content(filename)
|
event = get_file_content(filename)
|
||||||
self.put(posixpath.join(path, filename), event)
|
self.put(posixpath.join(path, filename), event)
|
||||||
|
logging.warning("Upload items finished")
|
||||||
filters_text = "".join(filter_template % f for f in filters)
|
filters_text = "".join(filter_template % f for f in filters)
|
||||||
_, responses = self.report(path, """\
|
_, responses = self.report(path, """\
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue