File size: 254 Bytes
25f01d1
 
 
 
 
 
 
 
0bf9463
1
2
3
4
5
6
7
8
9
import logging

def setup_logging():
    logging.basicConfig(
        filename="arena.log",
        level=logging.DEBUG,  # Change to DEBUG level
        format='%(asctime)s - %(levelname)s - %(message)s'
    )
    logging.info("Logging setup complete.")