rich/docs/source/logging.rst

17 lines
464 B
ReStructuredText
Raw Normal View History

2020-03-27 08:53:58 +00:00
Logging
=======
Rich supplies a :ref:`logging handler<logging>` which will format and colorize text written by Python's logging module.
Here's an example of how to set up a rich logger::
import logging
from rich.logging import RichHandler
FORMAT = "%(message)s"
logging.basicConfig(
level="NOTSET", format=FORMAT, datefmt="[%X] ", handlers=[RichHandler()]
)
log = logging.getLogger("rich")
log.info("Hello, World!")