Skip to content
Snippets Groups Projects
Commit c713ad86 authored by David Trattnig's avatar David Trattnig
Browse files

Debug messages for filtering. #41

parent a9fac959
No related branches found
No related tags found
No related merge requests found
...@@ -191,7 +191,7 @@ class TimeslotRenderer: ...@@ -191,7 +191,7 @@ class TimeslotRenderer:
if entry.entry_start >= entry.playlist.timeslot.timeslot_end: if entry.entry_start >= entry.playlist.timeslot.timeslot_end:
msg = "Filtered entry (%s) after end-of timeslot (%s) ... SKIPPED" % (entry, entry.playlist.timeslot) msg = "Filtered entry (%s) after end-of timeslot (%s) ... SKIPPED" % (entry, entry.playlist.timeslot)
self.logger.warning(SU.red(msg)) self.logger.debug(msg)
entry.queue_state = EntryQueueState.OUT_OF_SCHEDULE entry.queue_state = EntryQueueState.OUT_OF_SCHEDULE
elif entry.end_unix > entry.playlist.timeslot.end_unix: elif entry.end_unix > entry.playlist.timeslot.end_unix:
entry.queue_state = EntryQueueState.CUT entry.queue_state = EntryQueueState.CUT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment