fix(logging): downgrade csv export log to debug (#15123)

* fix(logging): downgrade csv export log to debug

* blacking

Co-authored-by: Phillip Kelley-Dotson <pkelleydotson@yahoo.com>
This commit is contained in:
ʈᵃᵢ 2021-06-16 16:53:45 -07:00 committed by GitHub
parent 5e543e3b9e
commit 91e424bbb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -2666,7 +2666,9 @@ class Superset(BaseSupersetView): # pylint: disable=too-many-public-methods
"exported_format": "csv",
}
event_rep = repr(event_info)
logger.info("CSV exported: %s", event_rep, extra={"superset_event": event_info})
logger.debug(
"CSV exported: %s", event_rep, extra={"superset_event": event_info}
)
return response
@api