X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=logging_utils.py;h=183e1f0109eb8b8dc243b23e9cceb431b01073e0;hb=d82c8377ce394cad812dc0d53829f7465b3f3f4e;hp=0452f6caac8470ab5b442ab3e54318259eafa6fc;hpb=d92df9c03f8510042ee1f8949d0786761f01d35e;p=python_utils.git 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