From 0c1dbc30bd3b8fe291c702acc61ac657630082cd Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Fri, 16 Sep 2016 14:13:53 +0200 Subject: [PATCH] Log read objects --- radicale/storage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/radicale/storage.py b/radicale/storage.py index de6f8d5..a67fbf9 100644 --- a/radicale/storage.py +++ b/radicale/storage.py @@ -705,6 +705,7 @@ class Collection(BaseCollection): continue path = os.path.join(self._filesystem_path, href) if os.path.isfile(path): + self.logger.debug("Read object: %s", path) with open(path, encoding=self.encoding, newline="") as fd: items.append(vobject.readOne(fd.read())) if self.get_meta("tag") == "VCALENDAR":