This is an automated email from the ASF dual-hosted git repository. hugh pushed a commit to branch 2022.39.1 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 08cd63eb2bfdd9891a7065ae16eeadc9614d7f5b Author: Phillip Kelley-Dotson <[email protected]> AuthorDate: Mon Oct 3 13:24:32 2022 -0700 fix: add logging to alerts and reports to find non-triggering issues (#21684) (cherry picked from commit 84c3cf66ea0858f7dd7ae1a1fca7260cec076bf6) --- superset/reports/commands/execute.py | 1 + 1 file changed, 1 insertion(+) diff --git a/superset/reports/commands/execute.py b/superset/reports/commands/execute.py index 90c5040cc1..1fbdba1c25 100644 --- a/superset/reports/commands/execute.py +++ b/superset/reports/commands/execute.py @@ -436,6 +436,7 @@ class BaseReportState: """ header_data = self._get_log_data() header_data["error_text"] = message + logger.info("header_data info %s", header_data) notification_content = NotificationContent( name=name, text=message, header_data=header_data )
