fix calling of missing method

This commit is contained in:
Jakub Trllo 2024-12-05 14:45:35 +01:00
parent 2292ecbac1
commit 373df56254

View file

@ -380,10 +380,10 @@ class ContainersModel:
repre_id, uuid.uuid4().hex
)
except Exception as e:
except Exception:
# skip item if required data are missing
self._controller.log_error(
f"Failed to create item: {e}"
self._log.warning(
f"Failed to create container item", exc_info=True
)
continue