You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- import logging
-
- DEBUG = False # False: logging to stdout with given LOGLEVEL - True: logging all to localhost:19996 and warnings or higher to stdout
- LOGLEVEL = logging.INFO
-
- APP_NAME = "z_monitor"
-
- MQTT_SERVER = "<hostname>"
- MQTT_PORT = 1883
- MQTT_USER = "<username>"
- MQTT_PASSWORD = "<password>"
-
- SOCK_PROT_PORT = 8380
|