From 84c3cf66ea0858f7dd7ae1a1fca7260cec076bf6 Mon Sep 17 00:00:00 2001 From: Phillip Kelley-Dotson Date: Mon, 3 Oct 2022 13:24:32 -0700 Subject: [PATCH] fix: add logging to alerts and reports to find non-triggering issues (#21684) --- 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 90c5040cc..1fbdba1c2 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 )