Cleanup.
authorScott Gasch <[email protected]>
Fri, 3 Mar 2023 00:03:56 +0000 (16:03 -0800)
committerScott Gasch <[email protected]>
Fri, 3 Mar 2023 00:03:56 +0000 (16:03 -0800)
src/pyutils/logging_utils.py

index d3102c8fd2e8c986802fe119c50119668142bf76..5d1ec8be932e5d48f3ecf901d55e246ef83373a2 100644 (file)
@@ -470,24 +470,6 @@ class OnlyInfoFilter(logging.Filter):
         return record.levelno == logging.INFO
 
 
-def prepend_all_logger_messages(
-    prefix: str, logger: logging.Logger
-) -> logging.LoggerAdapter:
-    """Helper method around the creation of a LoggerAdapter that prepends
-    a given string to every log message produced.
-
-    Args:
-        prefix: the message to prepend to every log message.
-        logger: the logger whose messages to modify.
-
-    Returns:
-        A new logger wrapping the old one with the given behavior.
-        The old logger will continue to behave as usual; simply drop
-        the reference to this wrapper when it's no longer needed.
-    """
-    return PrependingLogAdapter.wrap_logger(prefix, logger)
-
-
 class PrependingLogAdapter(logging.LoggerAdapter):
     def process(self, msg, kwargs):
         return f'{self.extra.get("prefix", "")}{msg}', kwargs
@@ -510,24 +492,6 @@ class PrependingLogAdapter(logging.LoggerAdapter):
         return PrependingLogAdapter(logger, {"prefix": prefix})
 
 
-def append_all_logger_messages(
-    suffix: str, logger: logging.Logger
-) -> logging.LoggerAdapter:
-    """Helper method around the creation of a LoggerAdapter that appends
-    a given string to every log message produced.
-
-    Args:
-        suffix: the message to prepend to every log message.
-        logger: the logger whose messages to modify.
-
-    Returns:
-        A new logger wrapping the old one with the given behavior.
-        The old logger will continue to behave as usual; simply drop
-        the reference to this wrapper when it's no longer needed.
-    """
-    return AppendingLogAdapter.wrap_logger(suffix, logger)
-
-
 class AppendingLogAdapter(logging.LoggerAdapter):
     def process(self, msg, kwargs):
         return f'{msg}{self.extra.get("suffix", "")}', kwargs
@@ -565,7 +529,7 @@ class LoggingContext(contextlib.ContextDecorator):
             * Add a prefix string to log messages
             * Add a suffix string to log messages
 
-        .. warning::
+        .. note::
 
             Unfortunately this can't be used to dynamically change the
             defaut logging level because of a conflict with