log.py
45 lines
| 1.2 KiB
| text/x-python
|
PythonLexer
|
r1051 | ''' | ||
|
r943 | SCHAINPY - LOG | ||
Simple helper for log standarization | ||||
Usage: | ||||
from schainpy.utils import log | ||||
log.error('A kitten died beacuse of you') | ||||
log.warning('You are doing it wrong but what the heck, I'll allow it) | ||||
log.succes('YOU ROCK!') | ||||
To create your own logger inside your class do it like this: | ||||
from schainpy.utils import log | ||||
awesomeLogger = log.makelogger("never gonna", bg="red", fg="white") | ||||
awesomeLogger('give you up') | ||||
which will look like this: | ||||
[NEVER GONNA] - give you up | ||||
with color red as background and white as foreground. | ||||
|
r1051 | ''' | ||
|
r943 | import click | ||
|
r1084 | |||
|
r1051 | def warning(message, tag='Warning'): | ||
click.echo(click.style('[{}] {}'.format(tag, message), fg='yellow')) | ||||
pass | ||||
|
r943 | |||
|
r1051 | def error(message, tag='Error'): | ||
click.echo(click.style('[{}] {}'.format(tag, message), fg='red')) | ||||
pass | ||||
|
r943 | |||
|
r1051 | def success(message, tag='Info'): | ||
click.echo(click.style('[{}] {}'.format(tag, message), fg='green')) | ||||
pass | ||||
|
r943 | |||
|
r1051 | def log(message, tag='Info'): | ||
click.echo('[{}] {}'.format(tag, message)) | ||||
pass | ||||
|
r943 | |||
|
r1051 | def makelogger(tag, bg='reset', fg='reset'): | ||
|
r943 | def func(message): | ||
|
r1084 | click.echo(click.style('[{}] {}'.format( | ||
tag.upper(), message), bg=bg, fg=fg)) | ||||
|
r943 | return func | ||