Skip to content

Commit

Permalink
Fix/logs fixes (#104)
Browse files Browse the repository at this point in the history
* fix type error in logger
  • Loading branch information
NeonKirill authored Oct 30, 2024
1 parent ee9394b commit 2c5677f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions services/klatchat_observer/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,7 @@ def _handle_auth_expired(self, data: dict):
status = data["status"]
error = data["body"]
LOG.info(
"Failed to authorize response for klat server",
status=status,
handler=handler,
error=error,
f"({status}) Failed to authorize response for {handler=!r}, {error=!r}"
)
self._login_to_klat_server()

Expand Down

0 comments on commit 2c5677f

Please sign in to comment.