We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b9f857 commit b134aa2Copy full SHA for b134aa2
src/ydata_profiling/profile_report.py
@@ -46,6 +46,10 @@
46
from ydata_profiling.utils.dataframe import hash_dataframe
47
from ydata_profiling.utils.paths import get_config
48
49
+from ydata_profiling.utils.logger import ProfilingLogger
50
+
51
+logger = ProfilingLogger(name='ReportLogger')
52
53
54
@typechecked
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 (
211
df is not None
212
and isinstance(df, pd.DataFrame)
0 commit comments