package for easy logging
Project description
Logme is a Python package that makes logging simple and robost. If you have found logging in Python not so straight forward, download this package and give it a try! :)
In A Nutshell
If you have a function you want to log, you can do this in your python file:
import logme
@logme.log
def my_awesome_function(my_arg, logger=None):
logger.info('this is my log message')
"""rest of the function"""
You can do the same with classes too:
import logme
@logme.log
class MyAwesomeClass:
def my_function(self, my_arg):
self.logger.info('this is my log message')
pretty nice right? :)
Documentation
You can find the documentation at http://logme.readthedocs.io/en/latest/ . Give it a try!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
logme-1.0.6.tar.gz
(9.5 kB
view hashes)
Built Distribution
logme-1.0.6-py2.py3-none-any.whl
(12.7 kB
view hashes)
Close
Hashes for logme-1.0.6-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 681ac3ca589420764c0692c776b9c3cad99b1b46d5334371718632df7dbdb0ca |
|
MD5 | eeb137b0223317e591f991b7873db17e |
|
BLAKE2b-256 | bbde65ca420c09fa23e645759461b67b6827e3fe489324fb8fb0691817d464e7 |