ATLAS Offline Software
Public Member Functions | List of all members
python.logger.ExtendedLogger Class Reference
Inheritance diagram for python.logger.ExtendedLogger:
Collaboration diagram for python.logger.ExtendedLogger:

Public Member Functions

def __init__ (self, *args, **kwargs)
 
def verbose (self, *args)
 
def fatal (self, *args)
 

Detailed Description

Definition at line 50 of file DataQuality/DQUtils/python/logger.py.

Constructor & Destructor Documentation

◆ __init__()

def python.logger.ExtendedLogger.__init__ (   self,
args,
**  kwargs 
)

Definition at line 51 of file DataQuality/DQUtils/python/logger.py.

51  def __init__(self, *args, **kwargs):
52  LoggerClass.__init__(self, *args, **kwargs)
53  if hasattr (logging, '_levelNames'):
54  self.__dict__.update(logging._levelNames)
55  if hasattr (logging, '_nameToLevel'):
56  self.__dict__.update(logging._nameToLevel)
57  if hasattr (logging, '_levelToName'):
58  self.__dict__.update(logging._levelToName)
59 

Member Function Documentation

◆ fatal()

def python.logger.ExtendedLogger.fatal (   self,
args 
)

Definition at line 63 of file DataQuality/DQUtils/python/logger.py.

63  def fatal(self, *args):
64  self.critical(*args)
65 
66 

◆ verbose()

def python.logger.ExtendedLogger.verbose (   self,
args 
)

Definition at line 60 of file DataQuality/DQUtils/python/logger.py.

60  def verbose(self, *args):
61  self.log(VERBOSE_LEVEL, *args)
62 

The documentation for this class was generated from the following file:
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18
dqt_zlumi_pandas.update
update
Definition: dqt_zlumi_pandas.py:42
python.TriggerHandler.verbose
verbose
Definition: TriggerHandler.py:297