diff options
| author | Scott Gasch <[email protected]> | 2021-09-16 08:48:06 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-09-16 08:48:06 -0700 |
| commit | 1fa049c0ce2af2027e362e368321636c75c987de (patch) | |
| tree | b6f6d65320bba37c2fb344e759ec2dafd2b22183 /logging_utils.py | |
| parent | d92df9c03f8510042ee1f8949d0786761f01d35e (diff) | |
A very important change to docs.
Diffstat (limited to 'logging_utils.py')
| -rw-r--r-- | logging_utils.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/logging_utils.py b/logging_utils.py index 0452f6c..183e1f0 100644 --- a/logging_utils.py +++ b/logging_utils.py @@ -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 |
