Metadata-Version: 2.4
Name: y-log
Version: 0.1.0
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: loguru>=0.7.3

### 安装
```shell
pip install git+https://github.com/link-yundi/ylog.git
```

### 示例

```python
import ylog

ylog.debug('debug msg')
ylog.info('info msg')
ylog.warning('warn msg')
ylog.error('error msg')
```
