Spaces:
Sleeping
Sleeping
File size: 596 Bytes
3f48026 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import logging
import os
from logging.handlers import RotatingFileHandler
try:
os.remove("logs.txt")
except Exception:
pass
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s - %(levelname)s] - %(funcName)s() - Line %(lineno)d: %(name)s - %(message)s",
datefmt="%d-%b-%y %I:%M:%S %p",
handlers=[
RotatingFileHandler("logs.txt", mode="w+", maxBytes=5_000_000, backupCount=10),
logging.StreamHandler(),
],
)
logging.getLogger("pyrogram").setLevel(logging.ERROR)
def LOGGER(name: str) -> logging.Logger:
return logging.getLogger(name)
|