add debug log when cache is cleaned up

This commit is contained in:
Blake Blackshear 2021-01-22 17:54:30 -06:00
parent a7bb0931c4
commit d31c295598

View File

@ -95,6 +95,7 @@ class EventProcessor(threading.Thread):
for f, data in list(self.cached_clips.items()):
if earliest_event-90 > data['start_time']+data['duration']:
del self.cached_clips[f]
logger.debug(f"Cleaning up cached file {f}")
os.remove(os.path.join(CACHE_DIR,f))
def create_clip(self, camera, event_data, pre_capture, post_capture):