Skip to content

Commit 9f58948

Browse files
committed
chore: fixup log
1 parent df9330e commit 9f58948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stac_auth_proxy/utils/cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __getitem__(self, key: Any) -> Any:
2424

2525
result, timestamp = self.cache[key]
2626
if (time() - timestamp) > self.ttl:
27-
msg = f"{self._key_str(key)} in cache, but expired."
27+
msg = f"{self._key_str(key)!r} in cache, but expired."
2828
del self.cache[key]
2929
logger.debug(msg)
3030
raise KeyError(f"{key} expired")

0 commit comments

Comments
 (0)