fix error handler

This commit is contained in:
dgtlmoon
2025-09-15 13:52:55 +02:00
parent c1a92de50c
commit 6e1c53b1bf
+1 -1
View File
@@ -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,