22 lines
379 B
Python
22 lines
379 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
import os
|
||
|
import report
|
||
|
|
||
|
|
||
|
MQTT_SERVER = "multimedia"
|
||
|
MQTT_TOPIC = "hifi/powerplug"
|
||
|
|
||
|
#
|
||
|
# Logging
|
||
|
#
|
||
|
__BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
|
||
|
APP_NAME = "powerplug"
|
||
|
LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
|
||
|
LOGLVL = 'DEBUG'
|
||
|
|
||
|
LOGHOST = 'localhost'
|
||
|
LOGPORT = 19996
|
||
|
|
||
|
formatter = report.LONG_FMT
|