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.1.0.tar.gz
(10.7 kB
view hashes)
Built Distribution
logme-1.1.0-py2.py3-none-any.whl
(17.6 kB
view hashes)
Close
Hashes for logme-1.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4d99913e62facae05b1719377ad97f491acccc52aedb1cc56435fc01f27f4cc |
|
MD5 | 985bec78f3cbf06c534a4a5b21029a65 |
|
BLAKE2b-256 | a531035848c5ee76b617b80903004854781b125d752c5b8dcdf6f04516c0ccbc |