From 6e1c53b1bf6bc282401416e3c92fccb4c989dc2f Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 15 Sep 2025 13:52:55 +0200 Subject: [PATCH] fix error handler --- changedetectionio/async_update_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/async_update_worker.py b/changedetectionio/async_update_worker.py index a607ca09b..ed945d984 100644 --- a/changedetectionio/async_update_worker.py +++ b/changedetectionio/async_update_worker.py @@ -91,7 +91,7 @@ async def async_update_worker(worker_id, q, notification_q, app, datastore): try: processor_module = importlib.import_module(processor_module_name) except ModuleNotFoundError as e: - print(f"Processor module '{processor}' not found.") + logger.error(f"Processor module '{processor}' not found.") raise e update_handler = processor_module.perform_site_check(datastore=datastore,