forked from MDL29/JacoBot
1
0
Fork 0

Disable DEBUG level log for Arcade

close #58
This commit is contained in:
HS-157 2024-04-25 11:33:39 +02:00
parent c1771906e4
commit 9513e5d5bc
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
import logging
from rich.logging import RichHandler
# Set level INFO log for Arcade library
logging.getLogger("arcade").setLevel(logging.INFO)
# Logger config
logging.basicConfig(format="%(asctime)s %(levelname)s %(message)s", datefmt="%m/%d/%Y %H:%M:%S", handlers=[RichHandler()])