Skip to content

Commit

Permalink
Add log.exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica committed Dec 19, 2024
1 parent 1c22eaa commit 59eee73
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions chia/timelord/timelord.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,9 +1092,8 @@ async def _do_process_communication(

except ConnectionResetError as e:
log.debug(f"Connection reset with VDF client {e}")
except Exception as e:
tb = traceback.format_exc()
log.warning(f"{type(e)} {e} {tb}")
except Exception:
log.exception("VDF client communication terminated abruptly")

async def _manage_discriminant_queue_sanitizer(self) -> None:
while not self._shut_down:
Expand Down

0 comments on commit 59eee73

Please sign in to comment.