We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b37ea92 commit 1f83d48Copy full SHA for 1f83d48
ucapi/entities.py
@@ -39,7 +39,6 @@ def contains(self, entity_id: str) -> bool:
39
def get(self, entity_id: str) -> Entity | None:
40
"""Retrieve entity with given identifier."""
41
if entity_id not in self._storage:
42
- _LOG.debug("[%s]: entity not found: '%s'", self._id, entity_id)
43
return None
44
45
return self._storage[entity_id]
0 commit comments