From 493e804320ff037438ed5df07e7001d3aa4698a3 Mon Sep 17 00:00:00 2001 From: Beto Dealmeida Date: Tue, 21 Sep 2021 14:22:37 -0700 Subject: [PATCH] chore: log URI before downloading data on import (#16762) --- superset/datasets/commands/importers/v1/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/superset/datasets/commands/importers/v1/utils.py b/superset/datasets/commands/importers/v1/utils.py index 04650d069b8e4..78cfae51ba6ed 100644 --- a/superset/datasets/commands/importers/v1/utils.py +++ b/superset/datasets/commands/importers/v1/utils.py @@ -125,6 +125,7 @@ def import_dataset( table_exists = True if data_uri and (not table_exists or force_data): + logger.info("Downloading data from %s", data_uri) load_data(data_uri, dataset, example_database, session) if hasattr(g, "user") and g.user: