[–] dozzie 8y ago ↗ > Each time I write a new application, I need to remember how to set logging up.You mean, like this? import logging.config import yaml with open(log_config_file) as f: logging.config.dictConfig(yaml.safe_load(f)) Because this is the correct way that allows the user to supply their own configuration that is not tied tightly to your little program.
1 comment
[ 0.26 ms ] story [ 12.2 ms ] threadYou mean, like this?
Because this is the correct way that allows the user to supply their own configuration that is not tied tightly to your little program.