diff --git a/src/prefect/ingest_photos_napi_gcs.py b/src/prefect/ingest_photos_napi_gcs.py index 7b0d216..d04d537 100644 --- a/src/prefect/ingest_photos_napi_gcs.py +++ b/src/prefect/ingest_photos_napi_gcs.py @@ -204,10 +204,17 @@ def ingest_photos_napi_gcs( ): """Flow to load Editorial photos from Unsplash and store them in a Google Cloud Storage Bucket""" + import pathlib + + path = pathlib.Path.cwd() + for p in path.rglob("*"): + logger.info(p.name) + logger = get_run_logger() # Init all variables env_variables = load_env_variables() + logger.info(env_variables) env = env_variables["ENV"] # dev, test or prod bucket_name = f"photos-editorial-metadata-{env}"