From 22e11f45f4c1bcbea426b21ec9a627e87ea3ca2e Mon Sep 17 00:00:00 2001 From: zachvalenta Date: Sun, 31 Mar 2019 06:35:40 -0400 Subject: [PATCH] add paragraph on loguru to logging section --- docs/writing/logging.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/writing/logging.rst b/docs/writing/logging.rst index d21838838..b609dc721 100644 --- a/docs/writing/logging.rst +++ b/docs/writing/logging.rst @@ -10,6 +10,8 @@ The :mod:`logging` module has been a part of Python's Standard Library since version 2.3. It is succinctly described in :pep:`282`. The documentation is notoriously hard to read, except for the `basic logging tutorial`_. +As an alternative, `loguru `_ provides an approach to logging nearly as simple as using a simple ``print`` statement. + Logging serves two purposes: - **Diagnostic logging** records events related to the application's