From 77a8c290f77fabf5174eda1ac83a3650dc6157ad Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Thu, 2 Feb 2023 12:24:04 +0000 Subject: [PATCH] logs --- src/auto_archiver/archivers/telethon_archiver.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/auto_archiver/archivers/telethon_archiver.py b/src/auto_archiver/archivers/telethon_archiver.py index a739159..59369ca 100644 --- a/src/auto_archiver/archivers/telethon_archiver.py +++ b/src/auto_archiver/archivers/telethon_archiver.py @@ -110,7 +110,6 @@ class TelethonArchiver(Archiver): result = Metadata() - logger.debug(f"TELETHON STARTING {chat}, {post_id}") # NB: not using bot_token since then private channels cannot be archived: self.client.start(bot_token=self.bot_token) with self.client.start(): try: @@ -124,7 +123,6 @@ class TelethonArchiver(Archiver): logger.debug(f"TELETHON GOT POST {post=}") if post is None: return False - logger.info(f"fetched telegram {post.id=}") media_posts = self._get_media_posts_in_group(chat, post) logger.debug(f'got {len(media_posts)=} for {url=}')