ghubstan 49404cebc5
Reorganize the python-examples module
- Use requirements.txt to install dependencies to local venv.
- Use setup.py to build/install example packages to local venv.
- Adjust reference-doc-builder to new Python pkg imports.
2022-03-17 12:44:28 -03:00

8 lines
180 B
Python

import logging
logging.basicConfig(
format='[%(asctime)s %(levelname)s %(threadName)s] %(message)s',
level=logging.INFO,
datefmt='%H:%M:%S')
log = logging.getLogger()