Update object_detection.py

This commit is contained in:
Tim Wesley 2025-04-11 16:44:44 -04:00 committed by Abinila Siva
parent 8b69a7a26d
commit 045085d9f7

View File

@ -197,7 +197,7 @@ def async_run_detector(
):
# Set thread and process titles for logging and debugging
threading.current_thread().name = f"detector:{name}"
logger.info(f"Starting MemryX Async detection process: {os.getpid()}")
logger.info(f"Starting async detection process: {os.getpid()}")
setproctitle(f"frigate.detector.{name}")
stop_event = mp.Event() # Used to gracefully stop threads on signal
@ -274,7 +274,7 @@ def async_run_detector(
while not stop_event.is_set():
time.sleep(1)
logger.info("Exited MemryX detection process...")
logger.info("Exited async detection process...")
class ObjectDetectProcess: