From a3884cfd10b58bcc8d4d33f61cd16aeb20a495b3 Mon Sep 17 00:00:00 2001 From: Yasir Aris M Date: Tue, 28 Nov 2023 06:48:58 +0700 Subject: [PATCH] Remove logger Signed-off-by: Yasir Aris M --- misskaty/plugins/notes.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/misskaty/plugins/notes.py b/misskaty/plugins/notes.py index 5ef2b856..0be1fe0d 100644 --- a/misskaty/plugins/notes.py +++ b/misskaty/plugins/notes.py @@ -143,7 +143,6 @@ async def get_one_note(self, message): if not name: return _note = await get_note(message.chat.id, name) - self.log.info(_note) if not _note: return type_ = _note.get("type") @@ -259,4 +258,4 @@ async def delete_all_cb(_, cb): if input == "yes": stoped_all = await deleteall_notes(chat_id) if stoped_all: - return await cb.message.edit("**Successfully deleted all notes on this chat.**") \ No newline at end of file + return await cb.message.edit("**Successfully deleted all notes on this chat.**")