bobbui/json-logging-python

Divide by 0 exception message

Closed this issue · 2 comments

The code is
logger.exception('You can\t divide by zero')

Looks like you dropped the ' between the \ and the t.
Should be
logger.exception('You can\'t divide by zero')

will take a look

fixed