Skip to content

Commit

Permalink
BE: remove extra logger
Browse files Browse the repository at this point in the history
  • Loading branch information
andreipradan committed Nov 5, 2024
1 parent 8ba0ff1 commit 377993f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def handle(self, *_, **__):
**self.get_kwargs(),
)
if error:
self.logger.warning(str(error))
return

try:
Expand Down
1 change: 0 additions & 1 deletion src/mainframe/exchange/management/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ def __init__(self, logger):
def do_request(self, url):
resp, error = fetch(url, self.logger, soup=False, timeout=20)
if error:
self.logger.exception(error)
raise FetchExchangeRatesException("Error fetching exchange rates")
return resp.content

Expand Down

0 comments on commit 377993f

Please sign in to comment.