A very important change to docs.
authorScott Gasch <[email protected]>
Thu, 16 Sep 2021 15:48:06 +0000 (08:48 -0700)
committerScott Gasch <[email protected]>
Thu, 16 Sep 2021 15:48:06 +0000 (08:48 -0700)
logging_utils.py

index 0452f6caac8470ab5b442ab3e54318259eafa6fc..183e1f0109eb8b8dc243b23e9cceb431b01073e0 100644 (file)
@@ -393,11 +393,11 @@ class OutputMultiplexer(object):
     class Destination(enum.IntEnum):
         """Bits in the destination_bitv bitvector.  Used to indicate the
         output destination."""
-        LOG_DEBUG = 0x01         # -\
-        LOG_INFO = 0x02          #  |
-        LOG_WARNING = 0x04       #   > Should provide logger to the c'tor.
-        LOG_ERROR = 0x08         #  |
-        LOG_CRITICAL = 0x10      # _/
+        LOG_DEBUG = 0x01         #  ⎫
+        LOG_INFO = 0x02          #  
+        LOG_WARNING = 0x04       #  ⎬ Must provide logger to the c'tor.
+        LOG_ERROR = 0x08         #  
+        LOG_CRITICAL = 0x10      #  ⎭
         FILENAMES = 0x20         # Must provide a filename to the c'tor.
         FILEHANDLES = 0x40       # Must provide a handle to the c'tor.
         HLOG = 0x80