From 1213e469f644bf699b804168d511f30ee9ab374a Mon Sep 17 00:00:00 2001 From: redxef Date: Tue, 6 Dec 2022 18:57:04 +0100 Subject: [PATCH] Remove print stmts. --- radicale_sql/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/radicale_sql/__init__.py b/radicale_sql/__init__.py index 66da14c..df008c1 100644 --- a/radicale_sql/__init__.py +++ b/radicale_sql/__init__.py @@ -401,7 +401,6 @@ class Storage(BaseStorage): return path_parts def _discover(self, path: str, *, connection, depth: str = "0") -> Iterable["radicale.types.CollectionOrItem"]: - logger.info("path = %s, depth = %s", path, depth) if path == '/': return [Collection(self, self._root_collection.id, '')] path_parts = self._split_path(path) @@ -525,8 +524,6 @@ class Storage(BaseStorage): items: Optional[Iterable["radicale_item.Item"]]=None, props: Optional[Mapping[str, str]]=None, ) -> "BaseCollection": - print('creating collection') - print(f'href={href}, items={items}, props={props}') path = self._split_path(href) parent_id = self._root_collection.id collection_table = self._meta.tables['collection']