Remove logger

Signed-off-by: Yasir Aris M <git@yasirdev.my.id>
This commit is contained in:
Yasir Aris M 2023-11-28 06:48:58 +07:00 committed by GitHub
parent 60c32ca7c1
commit a3884cfd10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -143,7 +143,6 @@ async def get_one_note(self, message):
if not name: if not name:
return return
_note = await get_note(message.chat.id, name) _note = await get_note(message.chat.id, name)
self.log.info(_note)
if not _note: if not _note:
return return
type_ = _note.get("type") type_ = _note.get("type")
@ -259,4 +258,4 @@ async def delete_all_cb(_, cb):
if input == "yes": if input == "yes":
stoped_all = await deleteall_notes(chat_id) stoped_all = await deleteall_notes(chat_id)
if stoped_all: if stoped_all:
return await cb.message.edit("**Successfully deleted all notes on this chat.**") return await cb.message.edit("**Successfully deleted all notes on this chat.**")