From cc1c7271209b3fef31197d5cdff5f0cc50898dac Mon Sep 17 00:00:00 2001 From: Andrey K Date: Fri, 21 Mar 2025 15:40:02 +0300 Subject: [PATCH] app: delete logging redis --- app/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/main.py b/app/main.py index 1b98307..f22b2e6 100644 --- a/app/main.py +++ b/app/main.py @@ -20,7 +20,6 @@ async def main() -> None: default_bot_properties: DefaultBotProperties = DefaultBotProperties(parse_mode='HTML') bot: Bot = Bot(token=settings.TELEGRAM_BOT_TOKEN, default=default_bot_properties) - logger.info('settings.REDIS_URL: %s', settings.REDIS_URL) dp: Dispatcher = Dispatcher(storage=RedisStorage.from_url(settings.REDIS_URL)) dp.include_router(commons.router)