loggaby

🐍 Simple, minimal and non-bloated logging for Python.


Keywords
logger, logging, python, python-logger, python-logging, python3
License
MIT
Install
pip install loggaby==1.1.1

Documentation

Loggaby-py

🐍 Simple, minimal logging for Python without useless features.

GitHub license GitHub stars
Loggaby-py is a direct port (aims to be, anyway) of the original JS version. It does 1 thing and does it well: posting nice logs to a terminal. Or perhaps a file? Anywhere you need can be done with a Transport (not present in this Python version as yet).

Oh, it looks like this:
Preview
(Exactly like the original)

Table of Contents

Install

pip install loggaby

Examples

Provided Here.

Documentation

Loggaby(debug=False, levels=[])

The Loggaby constructor, which creates a logger instance.

  • debug {Boolean} Whether to print debug messages. (Default: True)
  • levels Additional custom levels to provide. (An array of dicts)
    • name {str} Name of the level that appears in the logs
    • color {str} Color of the name (accepted values are these or a hex value)
    • debug {bool} Whether this is a debug log (that is hidden with debug: false)
    • fatal {bool} Whether to make the level name and message bold and underline
    • call {str} Name of the function to use this level

Levels

debug, log, warn, error, fatal by default.

You can log with logger.<Level>(). (examples)

License

Loggaby-py is licensed under the MIT license.
Read here for more info.


A Luvella project.