1
0

Expanded logging format
Some checks are pending
Run Python tests (through Pytest) / Test (push) Waiting to run
Verify Python project can be installed, loaded and have version checked / Test (push) Waiting to run

This commit is contained in:
Jon Michael Aanes 2024-11-26 23:26:12 +01:00
parent ae0647c176
commit f0ee9d7e8c
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -26,7 +26,9 @@ except ImportError:
OUTPUT_PATH = Path('./output') OUTPUT_PATH = Path('./output')
logging.basicConfig() logging.basicConfig(
format='%(asctime)s %(levelname)s %(module)s:%(lineno)d - %(message)s',
)
logger.setLevel('INFO') logger.setLevel('INFO')