add initial marker for daemon start

This commit is contained in:
2026-01-16 21:30:54 +00:00
parent 4982deb71c
commit 687c49d9cc

View File

@@ -10,6 +10,7 @@ from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler from watchdog.events import FileSystemEventHandler
from rewind.paths import load_config from rewind.paths import load_config
from rewind.state import add_file_to_state, create_state_file_if_needed, cleanup_state_files from rewind.state import add_file_to_state, create_state_file_if_needed, cleanup_state_files
from rewind.core import mark
INTERVAL = 10 INTERVAL = 10
running = True running = True
@@ -72,6 +73,7 @@ def main() -> None:
start_recording(con) start_recording(con)
create_state_file_if_needed() create_state_file_if_needed()
mark("daemon-start")
try: try:
event_handler = Handler() event_handler = Handler()