https://github.com/offlinehacker/pylogdecorate
Python logging decorators.
https://github.com/offlinehacker/pylogdecorate
Last synced: 2 months ago
JSON representation
Python logging decorators.
- Host: GitHub
- URL: https://github.com/offlinehacker/pylogdecorate
- Owner: offlinehacker
- Created: 2011-09-13T18:22:46.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-12-06T09:20:15.000Z (over 13 years ago)
- Last Synced: 2025-04-10T15:31:30.635Z (3 months ago)
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Have you ever wanted to have logging decorators for logging function calls and for automatic creation of logger object in class, based on class hierarchy.
If your answer is true, here is my implementation https://github.com/offlinehacker/PyLogDecorate. There is very nice option i’ve implemented called subdecorate, enabling for functions in derived classes being logged, even if decorator is only applied on base class function.
This logging decorator implementation can be easily extended.
- Install:
python setup.py install or easy_install PyLogDecorate.