Common Logger
Project description
LogPilot
LogPilot is a project to extend python standard logging to offer customizing ability.
Install
pip install LogPilot
Log format
we only support format like this:
#--------------------------------------------------
# 日志格式
#--------------------------------------------------
# %(asctime)s.%(msecs)03d 年-月-日 时:分:秒 2016-01-01 00:00:00.000
# %(filename)s 文件名,不含目录
# %(pathname)s 目录名,完整路径
# %(funcName)s 函数名
# %(levelname)s 级别名
# %(lineno)d 行号
# %(module)s 模块名
# %(message)s 消息体
# %(name)s 日志模块名
# %(processName)s 进程名
# %(threadName)s 线程名
# %(hostname)s FQDN
# %(uuid)s 跟踪id,可以是sha256或者job id
# %(elapsed)s 耗时(ms)
%(asctime)s.%(msecs)03d|%(levelname)s|%(name)s|%(filename)s|%(lineno)d|%(module)s|%(funcName)s|%(processName)s|%(threadName)s|%(message)s|%(hostname)s|%(uuid)s|%(elapsed)s
How to use
from LogPilot.log import Log
log = Log.get_logger(__name__)
class Example(object):
def __init__(self):
log.info(msg="this is a test for LogPilot", uuid="2b24bad1c5df6b4551768fe09ae877b893fc35505847e80f119c395bca27", elapsed=256)
example log
2016-11-17 14:35:59|DEBUG|__main__|test2_log.py|11|test2_log|__init__|MainProcess|MainThread|this is a test for LogPilot|localhost|2b24bad1c5df6b4551768fe09ae877b893fc35505847e80f119c395bca27|256
How to set global uuid
from LogPilot.log import Log
log = Log.get_logger(__name__, uuid='hsdfhkd')
log.info(msg="this is a test LogPilot", elapsed=8888)
log.info(msg='hahah', uuid='5678')
log.debug(msg="android world", elapsed=234)
# notice that uuid also can be override
log.error(msg="ios world", uuid='jaj', elapsed=99)
How to change log level
default DEBUG
import logging
from LogPilot.log import Log
log = Log.get_logger('test2222')
log.logger.setLevel(logging.INFO)
class Test(object):
def __init__(self):
log.info(msg="this is a test LogPilot", hahah='hooooo.', age=10000, fake_key='not valid')
if __name__ == '__main__':
from LogPilot.log import Log
a = Test()
log.debug(msg="this is a test LogPilot", hahah='hooooo.', uuid="1234567890")
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
LogPilot-0.0.1.tar.gz
(4.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file LogPilot-0.0.1.tar.gz.
File metadata
- Download URL: LogPilot-0.0.1.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
072e82fcac57a58c50f926377b0b5572c07adc8f350356cebd7b4a7b862a1197
|
|
| MD5 |
5a65d87fd51c8cf371d990f33c2e4aab
|
|
| BLAKE2b-256 |
74b671b6aab4be152ffce531999186b375c6e840fae18f32a51c1fd76300cb60
|
File details
Details for the file LogPilot-0.0.1-py2.py3-none-any.whl.
File metadata
- Download URL: LogPilot-0.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bccaad907ed30eb3943a51eec4aab756f79cad1657df288957fe1b52c7fc5101
|
|
| MD5 |
982565bf647a825ecbda977bbdaa5955
|
|
| BLAKE2b-256 |
65c082cb24fd40aa07743669524debc03651f3aa7199599dea25d78619590ea0
|