1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-12-15 08:06:17 +00:00

logging print datetime

This commit is contained in:
mihalin
2022-06-30 01:28:03 +03:00
parent fa2f3f9037
commit 4b62762c13
2 changed files with 4 additions and 1 deletions

View File

@@ -131,6 +131,8 @@ async def handle_user_message(message: types.Message, super_chat_id: int, bot):
await send_to_superchat(is_super_group, message, super_chat_id, bot)
except (exceptions.Unauthorized, exceptions.ChatNotFound):
return SendMessage(chat_id=message.chat.id, text=_("Не удаётся связаться с владельцем бота"))
except exceptions.MessageToForwardNotFound:
_logger.error("(exception) Message to forward not found")
bot.incoming_messages_count = F("incoming_messages_count") + 1
await bot.save(update_fields=["incoming_messages_count"])