mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-27 19:57:38 +00:00
12 lines
282 B
Python
12 lines
282 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)
|