14 lines
322 B
Python
14 lines
322 B
Python
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
|