logger¶
Module that defines the Logger class
-
class
tasrif.processing_pipeline.observers.logger.
Logger
(method='')¶ Logger class to log a dataframe in different ways
-
__init__
(method='')¶ The constructor of the Logger class will provide options to configure the operation. The logging is invoked via the observe method and the data to be logged is passed to the observe method.
- Parameters
method (String) – Logging method to log the dataframe Options: “head”, “tail”, “info”
-
observe
(operator, *data_frames)¶ Function that performs checks on operator and data frame before observation This observation is only performed on non-infrastructure operators
- Parameters
operator (ProcessingOperator) – Processing operator which is observed
*data_frames (list of pd.DataFrame) – Variable number of pandas dataframes to be observed
-