Comment-driven python loggin package
Project description
Logger LOCO
LoCo = log via comments
Python >= 3.6 only
Usage:
import logging
from logger_loco import loco
logger = logging.getLogger('mylogger')
@loco(logger)
def somefunc(a, b):
# This is a regular comment
c = a + b
#@ This is debug
#- This is info
#! This is warning
#X This is error
#@ You could also use variables interpolation: {a} + {b} = {c}
#-->
#@ This is indented log
#-->
#@ This is deeper indented log
#<--
#<--
#@ This is not indented log
somefunc(1, 2)
@loco(logger)
class Someclass(object):
def mymethod(self):
#@ Also works with classes
pass
Someclass().mymethod()
Will print:
DEBUG: This is debug
INFO: This is info
WARNING: This is warning
ERROR: This is error
DEBUG: You could also use variables interpolation: 1 + 2 = 3
DEBUG: This is indented log
DEBUG: This is deeper indented log
DEBUG: This is not indented log
DEBUG: Also works with classes
Development
Deploy package to <test.pypi.org>:
python3 setup.py sdist
python3 -m twine upload ---repository-url https://test.pypi.org/legacy/ dist/*
Deploy package to <pypi.org>:
rm -rf dist/
python3 setup.py sdist
python3 -m twine upload dist/*
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
logger-loco-0.1.5.tar.gz
(2.8 kB
view details)
File details
Details for the file logger-loco-0.1.5.tar.gz
.
File metadata
- Download URL: logger-loco-0.1.5.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62ecdfe342e4c795d2b31367e625217693e6e28f42689cf96600e3e286ff8d57 |
|
MD5 | 7cce76f66b5cd9541beadb0df5c40cef |
|
BLAKE2b-256 | 16fd9b3d18770c2d00746ac74762c7306a168757cfadc7ad010c784483d98d71 |