We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f96b8dd commit 0125861Copy full SHA for 0125861
hass_apps/schedy/schedule.py
@@ -422,13 +422,12 @@ def log(
422
423
last_rule = path.rules[-1]
424
if isinstance(last_rule, SubScheduleRule):
425
- log("{} [descending]".format(path), path, level="DEBUG")
+ log("[SUB] {}".format(path), path, level="DEBUG")
426
continue
427
elif not path.is_active(when):
428
- log("{} [inactive]".format(path), path, level="DEBUG")
+ log("[INA] {}".format(path), path, level="DEBUG")
429
430
- else:
431
- log("{}".format(path), path, level="DEBUG")
+ log("[ACT] {}".format(path), path, level="DEBUG")
432
433
result = None
434
for rule in reversed(path.rules_with_expr_or_value):
0 commit comments