Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a-kirami/nonebot-plugin-logpile
https://github.com/a-kirami/nonebot-plugin-logpile
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/a-kirami/nonebot-plugin-logpile
- Owner: A-kirami
- License: mit
- Created: 2023-05-09T17:40:10.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-10T14:08:33.000Z (7 months ago)
- Last Synced: 2024-10-09T10:47:07.241Z (28 days ago)
- Language: Python
- Size: 17.6 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 📖 介绍
将 nonebot 的日志记录保存到本地文件
## 💿 安装
使用 nb-cli 安装
在 nonebot2 项目的根目录下打开命令行, 输入以下指令即可安装nb plugin install nonebot-plugin-logpile
使用包管理器安装
在 nonebot2 项目的插件目录下, 打开命令行, 根据你使用的包管理器, 输入相应的安装命令pip
pip install nonebot-plugin-logpile
pdm
pdm add nonebot-plugin-logpile
poetry
poetry add nonebot-plugin-logpile
conda
conda install nonebot-plugin-logpile
打开 nonebot2 项目根目录下的 `pyproject.toml` 文件, 在 `[tool.nonebot]` 部分追加写入
plugins = ["nonebot_plugin_logpile"]
## ⚙️ 配置
在 nonebot2 项目的`.env`文件中添加下表中的必填配置
| 配置项 | 必填 | 默认值 | 说明 |
|:-----:|:----:|:----:|:----:|
| logpile_path | 否 | `./logs` | 日志文件保存路径,默认保存在当前工作目录下的 `logs` 文件夹中 |
| logpile_level | 否 | ERROR | 日志保存等级,可以为列表或者字符串。如果是字符串,那么保存当前等级及以上所有等级的日志,否则只保存列表中的等级 |
| logpile_retention | 否 | 14 | 日志文件保留时长,默认保留14天,自动清理过期日志 |