Skip to content

Commit 1f83d48

Browse files
committed
Remove excessive logging in Entities.get method
1 parent b37ea92 commit 1f83d48

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

ucapi/entities.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def contains(self, entity_id: str) -> bool:
3939
def get(self, entity_id: str) -> Entity | None:
4040
"""Retrieve entity with given identifier."""
4141
if entity_id not in self._storage:
42-
_LOG.debug("[%s]: entity not found: '%s'", self._id, entity_id)
4342
return None
4443

4544
return self._storage[entity_id]

0 commit comments

Comments
 (0)