Skip to content

Instantly share code, notes, and snippets.

View alexzorzella's full-sized avatar
💭
They're unit tests all the way down

Alex Zorzella alexzorzella

💭
They're unit tests all the way down
View GitHub Profile
@AlexanderHott
AlexanderHott / main.py
Last active March 29, 2026 20:50
Python logging config
# For an explanation and more advanced setup, see this video from mCoding https://www.youtube.com/watch?v=9L77QExPmI0
import logging
import logging.config
logging.config.dictConfig(
{
"version": 1,
"disable_existing_loggers": False,
"formatters": {