reviewer-arena / logging_config.py
openreviewer's picture
Upload folder using huggingface_hub
9d2f40b verified
raw
history blame contribute delete
No virus
252 Bytes
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.")