diff options
| -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 |
