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)