Skip to content

Commit

Permalink
updated logger message for downloading tiles in local path
Browse files Browse the repository at this point in the history
  • Loading branch information
nrjadkry committed Jan 18, 2024
1 parent 288a010 commit a6b7e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tileclipper/clipper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a6b7e1d

Please sign in to comment.