Skip to content

Commit f7037ec

Browse files
author
Aviv Laufer
committed
remove unneeded logging
1 parent 9449532 commit f7037ec

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

protoconfloader/protoconfloader.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,6 @@ async def watch_config(self, delay: int = 0) -> None:
161161
async with asyncio.TaskGroup() as tg:
162162
task1 = tg.create_task(self._listen_to_changes(self.config_path))
163163
task2 = tg.create_task(self._file_watcher(delay))
164-
self.logger.info(
165-
"Both tasks have completed now: %s, %s",
166-
task1.result(),
167-
task2.result(),
168-
)
169164
except asyncio.CancelledError:
170165
self.logger.info("Tasks were cancelled")
171166
except Exception as e:

0 commit comments

Comments
 (0)