https://github.com/pyunits/pyunit-log
简单的快速的函数日志处理模块
https://github.com/pyunits/pyunit-log
log logging python3
Last synced: 10 days ago
JSON representation
简单的快速的函数日志处理模块
- Host: GitHub
- URL: https://github.com/pyunits/pyunit-log
- Owner: pyunits
- Created: 2020-02-09T09:35:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-02T07:52:44.000Z (almost 6 years ago)
- Last Synced: 2026-01-14T10:34:09.837Z (5 months ago)
- Topics: log, logging, python3
- Language: Python
- Homepage: https://pyunit-log.readthedocs.io/en/latest/pyunit_log.html#module-pyunit_log.log
- Size: 13.7 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **pyUnit-log** [][1]
## 日志处理模块集合
[](https://pypi.org/project/pyunit-log/)
## 安装
pip install pyunit-log
## 亮点
快速简单的函数日志模块,只需要在函数头上写一个装饰器即可,一行代码解决日志问题。
@log(log_file='./logs')
### 日志装饰器
```python
from pyunit_log import log
if __name__ == '__main__':
#config_file是日志模板地址,不写默认加载
@log(log_file='./logs',config_file=None)
def division():
pass
```
### 加载默认日志配置
```python
from pyunit_log import Log
import logging
if __name__ == '__main__':
Log()
logging.info('默认加载到root下')
info = logging.getLogger('info')
info.info('日志文件写道info.log文件下')
error = logging.getLogger('error')
error.error('日志文件写道error.log文件下')
```
### 修改日志配置文件
```python
from pyunit_log import Log
import logging
if __name__ == '__main__':
Log(config_file = '',log_file = '')
# log_file 修改保存日志文件夹地址
# config_file 修改配置文件地址
info = logging.getLogger('info')
info.info('日志文件写道info.log文件下')
error = logging.getLogger('error')
error.error('日志文件写道error.log文件下')
```
### [修改配置文件格式](https://docs.python.org/zh-cn/3.7/library/logging.handlers.html?highlight=timedrotatingfilehandler)
```log
[loggers]
keys = root,info,error
[handlers]
keys = console,info,error
[formatters]
keys = simpleFormatter
[formatter_simpleFormatter]
format = %(asctime)s - %(module)s - %(thread)d - %(levelname)s : %(message)s
datefmt = %Y-%m-%d %H:%M:%S
[logger_root]
level = INFO
handlers = info,console
[handler_console]
class = StreamHandler
level = INFO
formatter = simpleFormatter
args = (sys.stdout,)
[logger_info]
level = INFO
handlers = info
qualname = info
propagate = 0
[handler_info]
class = handlers.RotatingFileHandler
formatter = simpleFormatter
args = ('logs/info.log', 'a', 1048576, 30, 'UTF-8')
[logger_error]
level = ERROR
handlers = error
qualname = error
propagate = 0
[handler_error]
class = handlers.TimedRotatingFileHandler
formatter = simpleFormatter
args = ('logs/error.log', 'D', 1, 30, 'UTF-8')
```
#### 日志大小说明
默认:info日志是1M(1048576)分割
error日志是每天分割
***
[1]: https://blog.jtyoui.com