python-colorlog icon indicating copy to clipboard operation
python-colorlog copied to clipboard

A colored formatter for the python logging module

Results 2 python-colorlog issues
Sort by recently updated
recently updated
newest added

I was trying to figure out how to get the `bright` colors that Pycharm terminal supports. Took my some time before I released there were undocumented colors, the `light_*` colors....

Attempting to use colorlog 6.8.2 under Python 3.13.0 like so: ```python import logging import sys import colorlog colorlog.basicConfig( format="%(log_color)s[%(levelname)-8s] %(message)s", log_colors={ "DEBUG": "cyan", "INFO": "bold", "WARNING": "yellow", "ERROR": "red", "CRITICAL":...