[set] setup logger

This commit is contained in:
levina 2022-02-25 10:53:23 +07:00 committed by GitHub
parent 124d17170d
commit 98bf36ec00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,16 @@
__version__ = "0.6.5" __version__ = "0.6.5"
# >>> patch : F.11.22
# update patch : F.11.22 import time
import logging
logging.basicConfig(
filename='bot.logs',
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
logging.getLogger("yt_dlp").setLevel(logging.ERROR)
logging.getLogger("pyrogram").setLevel(logging.ERROR)
logging.getLogger("PyTgCalls").setLevel(logging.ERROR)
LOGS = logging.getLogger(__name__)