Skip to main content

For structured logging.

Project description

log

Python library/client for structured log output

pip install spacemakerlog3

NB: As for now the log client for Python3 only supports logging JSON format.

Usage

from spacemakerlog3 import log

log.debug('hello something happened', some_key='with some value', another_key=123.12)

Output:

{"message": "hello something happened", "timestamp": "2018-08-05T18:08:01.780036Z", "another_key": 123.12, "level": "debug", "some_key": "with some value"}

Log exception with stacktrace:

from spacemakerlog3 import log

try:
    raise Exception('some error message')
except Exception as e:
    log.error('oooops, an error occured while doing something', exception=e)

Output:

{"message": "oooops, an error occured while doing something", "timestamp": "2018-08-15T08:49:46.707435Z", "level": "error", "exception": "Traceback (most recent call last):\n  File \"/someProject/some-spacemaker-app/some_module.py\", line 76, in some_method\n    raise Exception('some error message')\nException: some error message"}

Settings

The log client will read from environment variables at "init" for log level and format.

Env default
LOG_FORMAT "json"
LOG_LEVEL "debug"

Set log format to "text":

log.set_format('text')

Set log level to "info":

log.set_level('info')

Publish

Using twine for publishing to PyPI.

pip install twine
python setup.py bdist_wheel
twine upload dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spacemakerlog3-0.3.1-py2.py3-none-any.whl (5.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file spacemakerlog3-0.3.1-py2.py3-none-any.whl.

File metadata

  • Download URL: spacemakerlog3-0.3.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 5.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/2.7.16

File hashes

Hashes for spacemakerlog3-0.3.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a14aa162edd1be240fd6f7e562a1d4cb0f0895fe321a82bcbd08dcb2eb222656
MD5 3afc1997e794e96304608b70c7047e81
BLAKE2b-256 969eeb83570d72ad28912d3856f6a3930c86c43bfaf43a9a0acfcb4a1fec8ffd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page