DetailLogger is a lightweight Python utility for enhanced logging and exception data tracing.
Project description
🎨 DetailLogger V 0.2.0
✨ Overview
DetailLogger is a lightweight Python utility for enhanced logging and exception data tracing. It automatically captures contextual information—such as file name, function, and line number—whenever messages or exceptions are logged. The clear and complete exception information is very useful for debugging, monitoring, and building maintainable systems.
📦 Installation
pip install detaillogger
⚙️ Features
- ✅ Logs messages with caller context
- ✅ Captures exceptions with full traceback and information
- ✅ Supports console and file-based logging
- ✅ Built entirely on standard libraries
✍️ API Overview
DetailLogger(level, fmt, file_name): Create an instance with optional file output and log levellog(message: str): Logs message with caller metadatalog_exception(ex: BaseException, details: Optional[str]): Logs exception type, message, optional details, and source context
🧪 Usage
Run the built-in CLI demo for testing:
python core.py
Embedded Example
from detaillogger import log, log_exception
log("This is a message to log.")
try:
x = 1 / 0
except Exception as e:
log_exception(e, details="This is a message about the exception to log.")
Console Output:
2025-07-28 17:02:27,674 - DEBUG - Details: This is a message to log.
2025-07-28 17:02:27,674 - DEBUG - From: c:\Users\ryan\...detaillogger.py
2025-07-28 17:02:27,675 - DEBUG - Function: main()
2025-07-28 17:02:27,675 - DEBUG - Line: 3
2025-07-28 17:05:22,185 - DEBUG - Exception type: ZeroDivisionError
2025-07-28 17:05:22,186 - DEBUG - Exception message: division by zero
2025-07-28 17:05:22,186 - DEBUG - Details: This is a message about the exception to log.
2025-07-28 17:05:22,186 - DEBUG - File: ...detaillogger.py
2025-07-28 17:05:22,186 - DEBUG - Function: main()
2025-07-28 17:05:22,186 - DEBUG - Line: 6
Embedded Example
# To log to a file and console, instantiate DetailLogger class with filename.
from detaillogger import log, log_exception
logger = DetailLogger(file_name="detail.log")
log("This is a message to log to file.")
try:
x = 1 / 0
except Exception as e:
log_exception(e, details="This is a message about the exception to log to file.")
File Output:
Also log to file? (y/n):y
Enter filname:detail.log
Options
1) Log details.
2) Log 'division by zero' exception.
3) Log custom exception.
q) Exit.
Enter an option:1
Enter message to log:This is a message.
2025-07-30 14:46:04,161 - DEBUG - Details: This is a message.
2025-07-30 14:46:04,161 - DEBUG - From: c:\Users\ryan\Visual Code Projects\git_repositories\detaillogger\detaillogger.py
2025-07-30 14:46:04,162 - DEBUG - Function: main()
2025-07-30 14:46:04,162 - DEBUG - Line: 179
Message logged.
🧱 File Structure
detaillogger/
├── detaillogger/
│ ├──core.py
│ ├──detaillogger.py # Core logic
│ ├──__init__.py
├── assets/ # Folder for images, badges, or other static assets
│ ├── detaillogger_logo_2.png # Logo for documentation
│ └── image.png # File output
├── README.md # Documentation
├── pyproject.toml
├── setup.cfg
└── setup.py
🤝 Contributing
Pull requests are welcome! For major changes, open an issue to discuss improvements first.
📄 License
This project is licensed under the MIT License.
👤 Author
Created by Ryan LaPine @rlapine — a technically skilled developer focused on clarity, maintainability, and audience-ready documentation. This class is part of a broader effort to build reusable, well-documented tools for data-driven projects.
📬 Contact
Feel free to reach out with questions or collaboration ideas:
📧 github.stunt845@passinbox.com
🔗 GitHub: @rlapine
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file detaillogger-0.2.0.tar.gz.
File metadata
- Download URL: detaillogger-0.2.0.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0303f87ad851bf5cee8bd63000715e84d4af51256c66af5c7c07de8e8ff42fcb
|
|
| MD5 |
f12a4bf311ae490d895accfff79c109c
|
|
| BLAKE2b-256 |
1b30e8dfd6951b07a687b40c09674eeaebbc72d8cf9bf3e7eaa0fcfd6f2a9b1d
|
File details
Details for the file detaillogger-0.2.0-py3-none-any.whl.
File metadata
- Download URL: detaillogger-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fe997537b0fb3a442f74496e6d4b88d33e2153f24f2892483036a8e8414b64e
|
|
| MD5 |
a896ee7f44790ff55825e4f77603f917
|
|
| BLAKE2b-256 |
92993e2c989804e8cafbf1ef8cf6a8425c1ca22e3900526f25df8ff8bfc1cc91
|