Skip to content

Commit

Permalink
fix(logging): downgrade csv export log to debug (#15123)
Browse files Browse the repository at this point in the history
* fix(logging): downgrade csv export log to debug

* blacking

Co-authored-by: Phillip Kelley-Dotson <pkelleydotson@yahoo.com>
  • Loading branch information
nytai and pkdotson committed Jun 16, 2021
1 parent 5e543e3 commit 91e424b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion superset/views/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2666,7 +2666,9 @@ def csv( # pylint: disable=no-self-use,too-many-locals
"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
Expand Down

0 comments on commit 91e424b

Please sign in to comment.