Skip to content

Adds indentation to the log messages according to their location in the call stack.

License

Notifications You must be signed in to change notification settings

gergelyk/python-indentedlogs

Repository files navigation

indentedlogs

Adds indentation to the log messages according to their location in the call stack.

Requirements

This package requires CPython 3.8 or compatible. If you have other version already installed, you can switch using pyenv. It must be installed as described in the manual.

pyenv install 3.8.2
pyenv local 3.8.2

Installation

pip install indentedlogs

Examples

python examples/demo0.py
python examples/demo1.py
python examples/demo2.py

Development

# Preparing environment
pip install --user poetry  # unless already installed
poetry install

# Auto-formatting
poetry run docformatter -ri indentedlogs tests
poetry run isort -rc indentedlogs tests
poetry run yapf -r -i indentedlogs tests

# Checking coding style
poetry run flake8 indentedlogs tests

# Checking composition and quality
poetry run vulture indentedlogs tests
poetry run mypy indentedlogs tests
poetry run pylint indentedlogs tests
poetry run bandit indentedlogs tests
poetry run radon cc indentedlogs tests
poetry run radon mi indentedlogs tests

# Testing with coverage
poetry run pytest --cov indentedlogs --cov tests

# Rendering documentation
poetry run mkdocs serve

# Building package
poetry build

# Releasing
poetry version minor  # increment selected component
git commit -am "bump version"
git push
git tag ${$(poetry version)[2]}
git push --tags
poetry build
poetry publish
poetry run mkdocs build
poetry run mkdocs gh-deploy -b gh-pages

Donations

If you find this software useful and you would like to repay author's efforts you are welcome to use following button:

Donate

About

Adds indentation to the log messages according to their location in the call stack.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages