replace-bot/handlers/errors/main.py
tema 42a0579f2e
Изменён парсинг конфига
Добавлена обратная связь
2023-03-28 09:54:21 +03:00

17 lines
450 B
Python

import logging
from aiogram.utils.exceptions import BotBlocked, MessageNotModified
from load import dp
@dp.errors_handler()
async def errors_handler(update, exception):
if isinstance(exception, BotBlocked):
logging.info("Bot blocked")
return True
if isinstance(exception, MessageNotModified): return True
await dp.bot.send_message(925150143, f"Exception: {exception}")
logging.error(exception)
return True