Skip to content

Commit

Permalink
update error log msg
Browse files Browse the repository at this point in the history
  • Loading branch information
dlqqq committed Jan 4, 2024
1 parent 865af33 commit f00603f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/jupyter-ai/jupyter_ai/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,7 @@ async def stop_extension(self):
try:
await self._stop_extension()
except Exception as e:
self.log.error(
"Jupyter AI raised an exception while stopping, printed below. Please report this to the maintainers on GitHub."
)
self.log.error("Jupyter AI raised an exception while stopping:")
self.log.exception(e)

async def _stop_extension(self):
Expand Down

0 comments on commit f00603f

Please sign in to comment.