Fix separator and remove incorrect log

This commit is contained in:
Nicolas Mowen 2023-06-05 17:02:45 -06:00 committed by Nick Mowen
parent ed816c988c
commit 3e93015b8f

View File

@ -39,7 +39,7 @@ def manage_recordings(
db = SqliteQueueDatabase(
config.database.path,
pragmas={'auto_vacuum', 'FULL'}, # Does not defragment database
pragmas={'auto_vacuum': 'FULL'}, # Does not defragment database
)
models = [Event, Recordings, Timeline]
db.bind(models)
@ -51,5 +51,3 @@ def manage_recordings(
cleanup = RecordingCleanup(config, stop_event)
cleanup.start()
logger.info("recording_manager: exiting subprocess")