Skip to main content

('Toolkit for responsible, low-boilerplate logging of library method calls',)

Project description

https://img.shields.io/pypi/wheel/logfury.svg https://img.shields.io/pypi/l/logfury.svg https://img.shields.io/pypi/v/logfury.svg https://img.shields.io/pypi/dm/logfury.svg https://github.com/reef-technologies/logfury/workflows/CI/badge.svg?branch=master

Logfury

Logfury is a tool for python library maintainers. It allows for responsible, low-boilerplate logging of method calls.

whats with the weird import

from logfury.v1 import DefaultTraceMeta

If you were to use logfury in your library, any change to the API could potentially break your program. Nobody wants that.

Thanks to this import trick I can keep the API very stable. At the same time I can change the functionality of the library and change default behavior of next middle version, without changing the name of the package. This way YOU decide when to adopt potentially incompatible API changes, by incrementing the API version on import. This concept is called “apiver”.

Installation

Current stable

pip install logfury

Development version

git clone git@github.com:reef-technologies/logfury.git
pip install -e .

Basic usage

DefaultTraceMeta metaclass

>>> import logging
>>> import six
>>>
>>> from logfury.v1 import DefaultTraceMeta, limit_trace_arguments, disable_trace
>>>
>>>
>>> logging.basicConfig()
>>> logger = logging.getLogger(__name__)
>>> logger.setLevel(logging.DEBUG)
>>>
>>>
>>> @six.add_metaclass(DefaultTraceMeta)
>>> class Foo:
...     def baz(self, a, b, c=None):
...         return True
...     def get_blah(self):
...         return 5
...     def _hello(self):
...         pass
...     @disable_trace
...     def world(self):
...         pass
...     def __repr__(self):
...         return '<{} object>'.format(self.__class__.__name__,)
...
>>> class Bar(Foo):
...     def baz(self, a, b, c=None):
...         b += 1
...         return super(Bar, self).baz(a, b, c)
...     def world(self):
...         pass
...     @limit_trace_arguments(skip=['password'])
...     def secret(self, password, other):
...         pass
...     @limit_trace_arguments(only=['other'])
...     def secret2(self, password, other):
...         pass
...
>>> a = Foo()
>>> a.baz(1, 2, 3)
DEBUG:__main__:calling Foo.baz(self=<Foo object>, a=1, b=2, c=3)
>>> a.baz(4, b=8)
DEBUG:__main__:calling Foo.baz(self=<Foo object>, a=4, b=8)
>>> a.get_blah()  # nothing happens, since v1.DefaultTraceMeta does not trace "get_.*"
>>> a._hello()  # nothing happens, since v1.DefaultTraceMeta does not trace "_.*"
>>> a.world()  # nothing happens, since v1.DefaultTraceMeta does not trace "_.*"
>>> b = Bar()
>>> b.baz(4, b=8)  # tracing is inherited
DEBUG:__main__:calling Bar.baz(self=<Bar object>, a=4, b=8)
DEBUG:__main__:calling Foo.baz(self=<Bar object>, a=4, b=9, c=None)
>>> b.world()  # nothing happens, since Foo.world() tracing was disabled and Bar inherited it
>>> b.secret('correct horse battery staple', 'Hello world!')
DEBUG:__main__:calling Bar.secret(self=<Bar object>, other='Hello world!') (hidden args: password)
>>> b.secret2('correct horse battery staple', 'Hello world!')
DEBUG:__main__:calling Bar.secret2(other='Hello world!') (hidden args: self, password)

trace_call decorator

>>> import logging
>>> from logfury import *
>>> logging.basicConfig()
>>> logger = logging.getLogger(__name__)
>>>
>>> @trace_call(logger)
... def foo(a, b, c=None):
...     return True
...
>>> foo(1, 2, 3)
True
>>> logger.setLevel(logging.DEBUG)
>>> foo(1, 2, 3)
DEBUG:__main__:calling foo(a=1, b=2, c=3)
True
>>> foo(1, b=2)
DEBUG:__main__:calling foo(a=1, b=2)
True
>>>

Project details


Download files

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

Source Distribution

logfury-1.0.0.tar.gz (12.6 kB view details)

Uploaded Source

Built Distribution

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

logfury-1.0.0-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file logfury-1.0.0.tar.gz.

File metadata

  • Download URL: logfury-1.0.0.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for logfury-1.0.0.tar.gz
Algorithm Hash digest
SHA256 5990f738c7bfb51d71987b68c0ec6c1f3c15ca8f29d3176d08e2855487c78a2c
MD5 addbcdae13245e4b38964c85b3ac8912
BLAKE2b-256 afd342703df5ae23135368670103f04ac33f788f2125a47412b002c7293491e6

See more details on using hashes here.

File details

Details for the file logfury-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: logfury-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.2

File hashes

Hashes for logfury-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 35a32b0d87a2a224b819c41176f715fd511c4e29f6718f2303f2aa9a17958800
MD5 e9c033b6cfff6174a1c447071d555075
BLAKE2b-256 23b0545d5f4c1a6d4d694c6194d599d76829ea88761ddac4e14a93909d8abbc7

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