fix(alerts): log execution_id instead of report schedule name in query timing (#35592)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Elizabeth Thompson
2025-10-10 11:13:10 -07:00
committed by GitHub
parent 17ebbdd966
commit e437ae1f2f

View File

@@ -181,7 +181,7 @@ class AlertCommand(BaseCommand):
stop = default_timer()
logger.info(
"Query for %s took %.2f ms",
self._report_schedule.name,
self._execution_id,
(stop - start) * 1000.0,
)
return df