Skip to content

Commit

Permalink
log unexpected errors
Browse files Browse the repository at this point in the history
  • Loading branch information
iholston committed Sep 27, 2023
1 parent 06a18e3 commit 9cdf26d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ def account_loop(self) -> None:
except launcher.LauncherError as le:
self.log.error(le.__str__())
return
except Exception as e:
self.log.error(e)
return

def leveling_loop(self) -> None:
"""
Expand Down

0 comments on commit 9cdf26d

Please sign in to comment.