Skip to content

Commit

Permalink
chore: Increase awareness of same file warning during package (aws#2946)
Browse files Browse the repository at this point in the history
* chore: increase awareness of same file warning during package

* fix formatting & grammar

Co-authored-by: Mathieu Grandis <[email protected]>
  • Loading branch information
2 people authored and moelasmar committed Jul 1, 2021
1 parent 96036ff commit c04621a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samcli/lib/package/s3_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def upload(self, file_name: str, remote_path: str) -> str:

# Check if a file with same data exists
if not self.force_upload and self.file_exists(remote_path):
LOG.debug("File with same data is already exists at %s. " "Skipping upload", remote_path)
LOG.info("File with same data already exists at %s, skipping upload", remote_path)
return self.make_url(remote_path)

try:
Expand Down

0 comments on commit c04621a

Please sign in to comment.