Skip to main content

Helpful wrappers for logging

Project description

# (E)a(z)y (log)ging

Wrappers to make eazy logging of functions and members calls.
Allow to track parameters, exceptions and performance of functions.

# Installation

Simple as `pip3 install ezlog`

# Some examples on how to use it

To log function call
```python
from ezlog.wrappers import log_call

@log_call()
def test(a, b):
print("test_fiunction_called")
return 4

test(2, "test")
```

To log class member call
```python
from ezlog.wrappers import log_member_call

class A:
@log_member_call()
def test(self, a, b, **kwargs):
print("test_called")

a=A()
a.test(2, 4, test={"d":"t", "c":"o"})
```

# Customization

Default behavior can be overriden using followin module wide parameters:

- default_log_level
Override for default logging level.

- default_performance_measure
Override default behavior for measuring performance or not.

- default_logging
Override default logger.

- default_eps
Limit for prevent spamming extremely low measurements.

- default_one_line_log
Override default logging style.
If True - log only one line (Called (args), result)
If False(default) - log in 2 lines (Calling... Done).

- default_log_arguments
Override default settings to log arguments or not.

- default_log_result
Override default settings to log function result or not.

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

ezlog-0.8.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file ezlog-0.8.tar.gz.

File metadata

  • Download URL: ezlog-0.8.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for ezlog-0.8.tar.gz
Algorithm Hash digest
SHA256 db596868825ac975ee748176a4e17df16024ef56f5cfe08be515936f58daee97
MD5 f48bc831bec8c29fda2e47cfb9d313fd
BLAKE2b-256 5b8864ef0352f8fe6d911879b5e0619e49205ba2603da7b37b2594eaee2a02b8

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