Skip to main content

A custom logger with color support and additional features.

Project description

PyPI version Python Development Status Maintenance PyPI License


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) and EXCEPTION (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.
  • 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 (CustomLoggerAdapter) and set 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.")


---

## 🤝 Contributing
If you have a helpful tool, pattern, or improvement to suggest:
Fork the repo <br>
Create a new branch <br>
Submit a pull request <br>
I welcome additions that promote clean, productive, and maintainable development. <br>

---

## 📄 License
MIT License — see [LICENSE](LICENSE) for details.

---

## 🙏 Thanks
Thanks for exploring this repository! <br>
Happy coding! <br>

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

custom_python_logger-2.0.14.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

custom_python_logger-2.0.14-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file custom_python_logger-2.0.14.tar.gz.

File metadata

  • Download URL: custom_python_logger-2.0.14.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for custom_python_logger-2.0.14.tar.gz
Algorithm Hash digest
SHA256 354b292327d4b8aa1786cfa6c7d499a2e14df805cb87bb784a297344f2ec3af9
MD5 6b9785c0996b9ccc71006f8a9ac8155f
BLAKE2b-256 8edf51156b7eda89bf56e387e857004329e4e332af1fb871a68b3eefb96f318a

See more details on using hashes here.

File details

Details for the file custom_python_logger-2.0.14-py3-none-any.whl.

File metadata

File hashes

Hashes for custom_python_logger-2.0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 17ae26a0dd3c292ce551c51c81f168b282d6a4e95816ef2aa23ba9befa31f872
MD5 f6f88e68416497fc3104dd5023dd51cb
BLAKE2b-256 6c7f88a58978c38096ecfecf73de74139653e6b900b4be8d40546f7d98ef1d43

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page