Browse Source

Treat exception and non-exception the same

opensearch
Roi Rav-Hon 6 years ago
parent
commit
f14c580266
3 changed files with 8 additions and 6 deletions
  1. +1
    -0
      README.md
  2. +6
    -5
      logzio/handler.py
  3. +1
    -1
      setup.py

+ 1
- 0
README.md View File

@ -147,6 +147,7 @@ LOGGING = {
- appname - Your django app
## Release Notes
- 2.0.10 - Not ignoring formatting on exceptions
- 2.0.9 - Support extra fields on exceptions too (Thanks @asafc64!)
- 2.0.8 - Various PEP8, testings and logging changes (Thanks @nir0s!)
- 2.0.7 - Make sure sending thread is alive after fork (Thanks @jo-tham!)


+ 6
- 5
logzio/handler.py View File

@ -86,12 +86,13 @@ class LogzioHandler(logging.Handler):
if message.exc_info:
return_json['exception'] = self.format_exception(message.exc_info)
message.exc_info = None # We want to ignore logging format on exceptions, as we handle those differently
formatted_message = self.format(message)
if isinstance(formatted_message, dict):
return_json.update(formatted_message)
else:
formatted_message = self.format(message)
if isinstance(formatted_message, dict):
return_json.update(formatted_message)
else:
return_json['message'] = formatted_message
return_json['message'] = formatted_message
return_json.update(self.extra_fields(message))
return return_json


+ 1
- 1
setup.py View File

@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup(
name="logzio-python-handler",
version='2.0.9',
version='2.0.10',
description="Logging handler to send logs to your Logz.io account with bulk SSL",
keywords="logging handler logz.io bulk https",
author="roiravhon",


Loading…
Cancel
Save