A simple logging utility for Python applications
Project description
Certainly! Below is a sample README.md
file tailored for presenting the LoggerUtility
class on GitHub and PyPI:
# LoggerUtility
`LoggerUtility` is a Python class that simplifies logging setup across your Python applications. It provides a streamlined way to configure loggers with custom formats, different logging levels, and optional file output. Whether you're debugging during development or monitoring in production, `LoggerUtility` can help you keep clear and concise logs.
## Features
- Easy logger configuration with just a few lines of code.
- Customizable log message format.
- Optional date formatting in log messages.
- Support for logging to console or files.
- Convenience methods for various logging levels (`debug`, `info`, `warning`, `error`, `critical`).
## Installation
You can simply copy the `LoggerUtility` class into your project, or if you have it packaged, you can install it via `pip` (assuming you have it available on PyPI):
```bash
pip install LoggerUtility
Usage
Here is a quick example of how to use LoggerUtility
:
from logger_utility import LoggerUtility
# Initialize the logger
logger_util = LoggerUtility(__name__, level=logging.INFO)
# Log some messages
logger_util.info("Application is starting...")
logger_util.warning("An optional warning message.")
logger_util.error("An error occurred.")
# Log a critical message with exception traceback
try:
raise ValueError("An example exception.")
except Exception:
logger_util.critical("A critical error occurred.", exc_info=True)
Configuration
When initializing the LoggerUtility
, you can customize the following:
name
: The logger's name, typically set to__name__
to reflect the module's name.level
: The threshold for the logging messages (e.g.,logging.DEBUG
,logging.INFO
).log_format
: Custom format for the log messages.date_format
: Custom date format for the log messages.filename
: If set, logs will be directed to the specified file.
Documentation
For more details on how to use and configure LoggerUtility
, please refer to the inline documentation within the class itself. Each method and initializer parameter is thoroughly documented with docstrings.
More documentation at: Code Docta
Contributing
We welcome contributions from the community! If you'd like to contribute, feel free to fork the repository, make your changes, and submit a pull request.
License
LoggerUtility
is licensed under the MIT License. See the LICENSE file for more details.
Contact
If you have any questions or feedback, please open an issue in the GitHub repository, and we will get back to you as soon as possible.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cd_logging-0.0.1.tar.gz
.
File metadata
- Download URL: cd_logging-0.0.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7efa66c005a56a4ada53bdd36b5e4033d3e23a421e5516eedf9ff1b4c5f0d58 |
|
MD5 | 599d1f21cae17fdd516de141bcc95a1f |
|
BLAKE2b-256 | 91268343cb9e6835aec700cccfffd6b221249af74ebea745531a1139c1117c58 |
File details
Details for the file cd_logging-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: cd_logging-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 648a19993434f5663fa216958420211864130cfb99e8dd5c17d7acc819cb6fae |
|
MD5 | 1e0b603d23f46630bfe72fb61f463c02 |
|
BLAKE2b-256 | 2a9e93f7b4690dc9b3e0a9c853bedb886af91299508930644d03c70324c16139 |