Files

6 lines
215 B
Python
Raw Permalink Normal View History

2025-12-17 11:00:57 +08:00
import logging
# Configure the logger that will write test info to a file
logging.basicConfig(filename='lagrit-tests.log', level=logging.DEBUG, format='%(levelname)s:%(message)s')
log = logging.getLogger(__name__)