Hi there,
I’ve got a cron rule like this
rule "Cron"
when
Time cron "* * * * * ?"
then
logInfo(“Cron”, “Every Second…”)
end
And the log output is just this:
2016-12-05 16:27:15.005 [INFO ] [.eclipse.smarthome.model.script.Cron] - Every Second…
2016-12-05 16:27:16.001 [INFO ] [.eclipse.smarthome.model.script.Cron] - Every Second…
2016-12-05 16:27:17.001 [INFO ] [.eclipse.smarthome.model.script.Cron] - Every Second…
2016-12-05 16:27:18.001 [INFO ] [.eclipse.smarthome.model.script.Cron] - Every Second…
2016-12-05 16:27:19.003 [INFO ] [.eclipse.smarthome.model.script.Cron] - Every Second…
No more outputs are following (non interessting output).
This is just a small reproducable test. My original rules have more time between interruptions.
Does somebody know what the problem is?