mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 09:36:59 +00:00
13 lines
283 B
Python
13 lines
283 B
Python
### low level logging and protocol handling
|
|
|
|
# normally you shouldnt need to look into this file too much
|
|
|
|
import logging
|
|
import colorlog
|
|
import config
|
|
|
|
colorlog.basicConfig(level=logging.DEBUG)
|
|
|
|
|
|
logging.getLogger("requests.packages.urllib3.connectionpool").setLevel(logging.ERROR)
|