mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
10 lines
274 B
Python
10 lines
274 B
Python
|
|
import logging
|
||
|
|
|
||
|
|
def run(typ,frequenz,daten):
|
||
|
|
logging.debug("Throw Template Plugin")
|
||
|
|
try:
|
||
|
|
logging.info("ZVEI: %s wurde empfangen!", daten[0])
|
||
|
|
logging.debug("try 5/0")
|
||
|
|
test = 5/0
|
||
|
|
except:
|
||
|
|
logging.exception("Error in Template Plugin")
|