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

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