24 linhas
527 B
Python
24 linhas
527 B
Python
import report
|
|
|
|
APP_NAME = 'amplifier'
|
|
|
|
#####################################################################
|
|
|
|
METHOD_MONITOR = 'monitor'
|
|
METHOD_KODI = 'kodi'
|
|
METHOD_BT_AUDIO = 'bt_audio'
|
|
|
|
METHOD_ACTIVE = [METHOD_BT_AUDIO, ]
|
|
|
|
#####################################################################
|
|
|
|
LOGTARGET = 'logfile' # possible choices are: 'logfile' or 'stdout'
|
|
LOGLVL = 'DEBUG'
|
|
|
|
LOGHOST = '192.168.0.100'
|
|
LOGPORT = 19996
|
|
|
|
formatter = report.SHORT_FMT
|
|
|
|
#####################################################################
|