MPAS-JEDI
logsetup.py
Go to the documentation of this file.
1 import logging
2 import os
3 import re
4 import sys
5 
6 loglevel = logging.INFO
7 
8 ## setup logging
9 class _AnsiColorStreamHandler(logging.StreamHandler):
10  DEFAULT = '\x1b[0m'
11  RED = '\x1b[31m'
12  GREEN = '\x1b[32m'
13  YELLOW = '\x1b[33m'
14  CYAN = '\x1b[36m'
15 
16  CRITICAL = RED
17  ERROR = RED
18  WARNING = YELLOW
19  INFO = GREEN
20  DEBUG = CYAN
21 
22  @classmethod
23  def _get_color(cls, level):
24  if level >= logging.CRITICAL: return cls.CRITICALCRITICAL
25  elif level >= logging.ERROR: return cls.ERRORERROR
26  elif level >= logging.WARNING: return cls.WARNINGWARNING
27  elif level >= logging.INFO: return cls.INFOINFO
28  elif level >= logging.DEBUG: return cls.DEBUGDEBUG
29  else: return cls.DEFAULTDEFAULT
30 
31  def __init__(self, stream=None):
32  logging.StreamHandler.__init__(self, stream)
33 
34  def format(self, record):
35  text = logging.StreamHandler.format(self, record)
36  color = self._get_color_get_color_get_color(record.levelno)
37  return color + text + self.DEFAULTDEFAULT
38 
39 
41  def emit(self, record):
42  super().emit(record)
43  if record.levelno in (logging.ERROR, logging.CRITICAL):
44  raise SystemExit(-1)
45 
46 ## import this module in order to set the following logging config
47 logging.basicConfig(
48  level=loglevel,
49  format='%(asctime)s [%(levelname)s] : %(name)s : %(message)s',
50  datefmt='%Y-%m-%d_%H:%M:%S',
51  handlers=[
53  ]
54 )
def _get_color(cls, level)
Definition: logsetup.py:23
def format(self, record)
Definition: logsetup.py:34
def __init__(self, stream=None)
Definition: logsetup.py:31
def emit(self, record)
Definition: logsetup.py:41