Skip to content

Commit

Permalink
debug log, update exception log
Browse files Browse the repository at this point in the history
  • Loading branch information
cl0ete committed Dec 10, 2024
1 parent 79f3ad5 commit c89b54f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions waypoint/services/nats_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async def event_generator(
state=state,
start_time=start_time,
)
logger.info("Successfully resubscribed to NATS.")
logger.debug("Successfully resubscribed to NATS.")

except Exception as e: # pylint: disable=W0718
logger.exception("Unexpected error in event generator: {}", e)
Expand Down Expand Up @@ -210,7 +210,7 @@ async def event_generator(
start_time=start_time,
)
except Exception as e: # pylint: disable=W0718
logger.exception("Error processing events: {}", e)
logger.exception("Unexpected error processing events: {}", e)

finally:
if subscription:
Expand Down

0 comments on commit c89b54f

Please sign in to comment.