Update logging_utils docs.
authorScott Gasch <[email protected]>
Sat, 10 Jun 2023 20:43:10 +0000 (13:43 -0700)
committerScott Gasch <[email protected]>
Sat, 10 Jun 2023 20:43:10 +0000 (13:43 -0700)
src/pyutils/logging_utils.py

index b0b0618eae1d40e9f85292c89479404be17f4fe2..dbc8a6fcb3c14243fe93a343ae31ba8f373d6696 100644 (file)
@@ -32,8 +32,12 @@ to do things such as:
     * optionally squelch repeated messages (:code:`--logging_squelch_repeats`),
     * optionally log probalistically (:code:`--logging_probabilistically`),
     * capture printed messages into the info log (:code:`--logging_captures_prints`),
-    * and optionally clear unwanted logging handlers added by other imports
+    * optionally clear unwanted logging handlers added by other imports
       before this one (:code:`--logging_clear_preexisting_handlers`).
+    * optionally append to system-wide records of non-zero exits
+      (:code:`--logging_non_zero_exits_record_path`) and unhandled exceptions
+      (:code:`--logging_unhandled_top_level_exceptions_record_path`) in
+      cooperation with :mod:`pyutils.bootstrap`.
     * There are also :class:`LoggerAdapter` classes to implement prefix/suffix
       functionality without using :class:`LoggingContext` by wrapping the
       logger included.