Skip to main content

Auto generate logs for functions

Project description

python-autologs

Auto generate logs for functions based on function docstring

Decorator to generate log info and log error for function. The log contain the first line from the function docstring and resolve names from function docstring by function args, any args that not resolved from the docstring will be printed after. In some cases only info or error log is needed, the decorator can be called with @generate_logs(error=False) to get only log INFO and vice versa

Example: @generate_logs() def my_test(test, cases): ''' Run test with cases ''' return

my_test(test='my-test-name', cases=['case01', 'case02'] Will generate: INFO Run test my-test-name with cases case01, case02 ERROR Failed to Run test my-test-name with cases case01, case02 if step is True: Test Step 1: Run test my-test-name with cases case01, case02

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

python-autologs-0.0.5.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

python_autologs-0.0.5-py3-none-any.whl (6.4 kB view hashes)

Uploaded Python 3

Supported by

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