edit plugin debug messages

This commit is contained in:
Schrolli 2015-05-22 10:00:09 +02:00
parent c85ce2b158
commit 70c57bda44
4 changed files with 17 additions and 15 deletions

View file

@ -35,13 +35,13 @@ def run(typ,freq,data):
########## User Plugin CODE ##########
if typ == "FMS":
logging.warning(typ + " not supported")
logging.warning("%s not supported", typ)
elif typ == "ZVEI":
logging.warning(typ + " not supported")
logging.warning("%s not supported", typ)
elif typ == "POC":
logging.warning(typ + " not supported")
logging.warning("%s not supported", typ)
else:
logging.warning(typ + " not supported")
logging.warning("Invalid Typ: %s", typ)
########## User Plugin CODE ##########
except: