Metadata-Version: 2.1
Name: loggings
Version: 0.0.4
Summary: Provides more logging tools.
Home-page: https://github.com/Chitaoji/loggings/
Author: Chitaoji
Author-email: 2360742040@qq.com
License: BSD
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12.7
Description-Content-Type: text/markdown


# loggings
Provides more logging tools.

## Installation
```sh
$ pip install loggings
```

## Usage
```py
>>> import loggings

>>> loggings.warning("hello")
WARNING:root:hello

>>> loggings.get_logger("here", loggings.DEBUG).debug("hello")
DEBUG:here:hello
```

## See Also
### Github repository
* https://github.com/Chitaoji/loggings/

### PyPI project
* https://pypi.org/project/loggings/

## License
This project falls under the BSD 3-Clause License.

## History
### v0.0.4
* Updated the message logged by `log()` when `line_info` is True.

### v0.0.3
* New keyword-only argument `line_info` for `log()`, `debug()`, etc. 

### v0.0.2
* New function `log()`, which logs a message with the integer severity `level` on the module logger.

### v0.0.1
* Initial release.

