Skip to content

Commit

Permalink
Improved bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
morington committed Jun 30, 2024
1 parent 99bb5aa commit 19651b5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion confhub/core/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@


class ConfhubError(Exception):
...
def __init__(self, message, **kwargs):
logger.error(message, exc_info=True, **kwargs)

super().__init__(message)


def confhub_error(message: str, **kwargs) -> None:
Expand Down

0 comments on commit 19651b5

Please sign in to comment.