
Wer in der Open-Source Lösung für Smarthome und Gebäudeautomatisierung eigene Rules schreibt und auf diesen Fehler im Log von openHAB stößt:
[ERROR] [internal.handler.ScriptActionHandler] - Script execution of rule with UID 'xxx' failed: The name 'LogInfo' cannot be resolved to an item or type; line 7, column 6, length 36 in xxx
20
Dem zeige ich die einfache Lösung 🙂
# falsch
LogInfo("Infotxt","Dies ist ein Infotext")
#korrekt
logInfo("Infotxt","Dies ist ein Infotext")
Achte bitte auf die Kleinschreibung von “log”.
Thats it … Have Fun!