mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
- insert/change config-file - pluginloader use only enabled modules (config.ini) - changes in interface-description
14 lines
380 B
Python
14 lines
380 B
Python
#!/usr/bin/python
|
|
# -*- coding: cp1252 -*-
|
|
|
|
import logging # Global logger
|
|
import globals # Global variables
|
|
|
|
def run(typ,freq,data):
|
|
logging.debug("Strat Plugin: template")
|
|
try:
|
|
logging.info("ZVEI: %s wurde auf %s empfangen!", data["zvei"],freq)
|
|
logging.debug("try 5/0")
|
|
test = 5/0
|
|
except:
|
|
logging.exception("Error in Template Plugin") |