Commit b134aa2 1 parent 7b9f857 commit b134aa2 Copy full SHA for b134aa2
File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 46
46
from ydata_profiling .utils .dataframe import hash_dataframe
47
47
from ydata_profiling .utils .paths import get_config
48
48
49
+ from ydata_profiling .utils .logger import ProfilingLogger
50
+
51
+ logger = ProfilingLogger (name = 'ReportLogger' )
52
+
49
53
50
54
@typechecked
51
55
class ProfileReport (SerializeReport , ExpectationsReport ):
@@ -199,6 +203,10 @@ def __validate_inputs(
199
203
def __initialize_dataframe (
200
204
df : Optional [Union [pd .DataFrame , sDataFrame ]], report_config : Settings
201
205
) -> Optional [Union [pd .DataFrame , sDataFrame ]]:
206
+
207
+ logger .info_def_report (dataframe = type (df ),
208
+ timeseries = report_config .vars .timeseries .active )
209
+
202
210
if (
203
211
df is not None
204
212
and isinstance (df , pd .DataFrame )
You can’t perform that action at this time.
0 commit comments