A custom logger with color support and additional features.
Project description
custom-python-logger
A powerful and flexible Python logger with colored output, custom log levels, and advanced configuration options.
Easily integrate structured, readable, and context-rich logging into your Python projects for better debugging and monitoring.
🚀 Features
- ✅ Colored Output: Beautiful, readable logs in your terminal using
colorlog. - ✅ Custom Log Levels: Includes
STEP(for process steps) andEXCEPTION(for exception tracking) in addition to standard levels. - ✅ Flexible Output: Log to console, file, or both. Supports custom log file paths and automatic log directory creation.
- ✅ Contextual Logging: Add extra fields (like user, environment, etc.) to every log message.
- ✅ UTC Support: Optionally log timestamps in UTC for consistency across environments.
- ✅ Pretty Formatting: Built-in helpers for pretty-printing JSON and YAML data in logs.
- ✅ Short Path Display: Automatically trims log file paths to project-relative or
.venv-relative format for cleaner output. - ✅ Easy Integration: Simple API for getting a ready-to-use logger anywhere in your codebase.
📦 Installation
pip install custom-python-logger
🔧 Usage
Here's a quick example of how to use custom-python-logger in your project:
import logging
from custom_python_logger import build_logger, CustomLoggerAdapter
logger: CustomLoggerAdapter = build_logger(
project_name='Logger Project Test',
log_level=logging.DEBUG,
log_file=True,
)
logger.debug("This is a debug message.")
logger.info("This is an info message.")
logger.step("This is a step message.")
logger.warning("This is a warning message.")
try:
_ = 1 / 0
except ZeroDivisionError:
logger.exception("This is an exception message.")
logger.critical("This is a critical message.")
Advanced Usage
-
Log to a file:
from custom_python_logger import build_logger logger = build_logger(project_name='MyApp', log_file=True)
-
Use UTC timestamps:
from custom_python_logger import build_logger logger = build_logger(project_name='MyApp', log_file=True, utc=True)
-
Add extra context:
from custom_python_logger import build_logger logger = build_logger(project_name='MyApp', log_file=True, utc=True, extra={'user': 'alice'})
-
Pretty-print JSON or YAML:
from custom_python_logger import build_logger, json_pretty_format, yaml_pretty_format logger = build_logger(project_name='MyApp', utc=True, log_file=True) logger.info(json_pretty_format({'foo': 'bar'})) logger.info(yaml_pretty_format({'foo': 'bar'}))
-
Use an existing logger with a custom name:
from custom_python_logger import get_logger logger = get_logger('some-name') logger.debug("This is a debug message.") logger.info("This is an info message.") logger.step("This is a step message.")
-
Use a custom log format:
from custom_python_logger import build_logger, LOG_FORMAT_FILENAME, LOG_FORMAT_SHORTPATH # Default — shows project-relative or .venv-relative path: # 2026-05-18 | INFO | l.20 | my_app | my_project/app/main.py:42 | message logger = build_logger(project_name='MyApp', log_format=LOG_FORMAT_SHORTPATH) # Classic — shows filename only (no path): # 2026-05-18 | INFO | l.20 | my_app | main.py:42 | message logger = build_logger(project_name='MyApp', log_format=LOG_FORMAT_FILENAME)
🗂️ Short Path Display
By default, build_logger uses LOG_FORMAT_SHORTPATH, which trims the file path in every log line:
| Path type | Raw record.pathname |
Displayed as |
|---|---|---|
| Project file | /home/user/my_project/app/main.py |
my_project/app/main.py |
Dependency in .venv |
/home/user/my_project/.venv/lib/python3.13/site-packages/urllib3/pool.py |
.venv/lib/python3.13/site-packages/urllib3/pool.py |
| Unrecognised path | /tmp/some_script.py |
/tmp/some_script.py (full path) |
Setting your project name
The short-path logic uses the PROJECT_NAME environment variable to identify your project root.
Set it in your .env file (loaded automatically on import) or export it before running:
# .env
PROJECT_NAME=my_project
# or inline
PROJECT_NAME=my_project python main.py
Note:
custom-python-loggercallsload_dotenv()on import, which reads your.envfile automatically. If you setPROJECT_NAMEprogrammatically, do so before importingcustom_python_loggerto ensure it takes effect.
🤝 Contributing
If you have a helpful tool, pattern, or improvement to suggest:
Fork the repo
Create a new branch
Submit a pull request
I welcome additions that promote clean, productive, and maintainable development.
📄 License
MIT License — see LICENSE for details.
🙏 Thanks
Thanks for exploring this repository!
Happy coding!
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 custom_python_logger-4.0.2.tar.gz.
File metadata
- Download URL: custom_python_logger-4.0.2.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08b96ccc5a8698e75e25cef410c9cdaab4f832811d04055629090492e9d527e9
|
|
| MD5 |
14b9674190d3b592d4ce97f08f4e1903
|
|
| BLAKE2b-256 |
a86ace86f3cbcd69b85bed239d5ce614e4faebfc3a27e1b4486e4df3d29f591b
|
File details
Details for the file custom_python_logger-4.0.2-py3-none-any.whl.
File metadata
- Download URL: custom_python_logger-4.0.2-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af51a23380e1a6d41f871017e74b50a8ffa6461797e86558251479926a84eca3
|
|
| MD5 |
82e3057e4956a7c56f375938ad182ca0
|
|
| BLAKE2b-256 |
044851e5a76867556471c89d5284358745b0ada999f4323ceb358d89cf06f8d6
|