Metadata-Version: 2.4
Name: python-devlog
Version: 2.2.0
Summary: Deprecated compatibility shim for python-devlog (renamed to logveil). Use logveil instead.
Author-email: めがねこ <neko@meganeko.dev>
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: logveil<3.0.0,>=2.2.0

python-devlog
=============

> ⚠️ **Deprecated.** This package has been renamed to [`logveil`](https://pypi.org/project/logveil/).
> This package is now a thin compatibility shim that re-exports everything from `logveil`.
> It will emit a `DeprecationWarning` on import.

## Migration

```bash
pip install logveil
```

```python
# Before
from devlog import log_on_start, log_on_end, log_on_error

# After
from logveil import log_on_start, log_on_end, log_on_error
```

All APIs are identical — only the package and import name changes.

## Why the rename?

`python-devlog` has been renamed to `logveil` to better reflect its purpose as a logging veil/mask for your code.
See the [logveil repository](https://github.com/MeGaNeKoS/logveil) for full documentation.
