Metadata-Version: 2.4
Name: zcy-loguru
Version: 0.2.0
Summary: Unified Loguru logging helpers with standard logging interception and trace context support.
Author: zfane
License-Expression: MIT
Project-URL: Homepage, https://pypi.org/project/zcy-loguru/
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: loguru==0.7.3
Provides-Extra: otel
Requires-Dist: opentelemetry-api>=1.29.0; extra == "otel"

# zcy-loguru

`zcy-loguru` provides a small wrapper around `loguru` for structured logging,
standard library logging interception, and trace/span propagation.

## Install

```bash
pip install zcy-loguru
```

Install optional OpenTelemetry support with:

```bash
pip install "zcy-loguru[otel]"
```

## Usage

```python
from zcy_logger import init_logging, logger

init_logging()
logger.info("hello")
```
