From a6b7e1dce46dbbbfc4f366a887493339d09cfa36 Mon Sep 17 00:00:00 2001 From: Niraj Adhikari Date: Thu, 18 Jan 2024 13:33:09 +0545 Subject: [PATCH] updated logger message for downloading tiles in local path --- tileclipper/clipper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tileclipper/clipper.py b/tileclipper/clipper.py index f398f7f..e6b2528 100644 --- a/tileclipper/clipper.py +++ b/tileclipper/clipper.py @@ -101,7 +101,7 @@ def download_tile_with_progress_local(self, x, y, zoom, progress_bar): with open(local_file_path, 'wb') as file: file.write(response.content) - self.logger.info(f"Tile downloaded and uploaded successfully to S3: {self.s3_bucket}/{zoom}/{x}/{filename}") + self.logger.info(f"Tile downloaded successfully to: {self.output_folder}/{zoom}/{x}/{filename}") else: pass progress_bar.update(1)