Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charon/pkgs/maven.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def handle_maven_uploading(
targets_ = [(target[1], remove_prefix(target[2], "/")) for target in targets]
logger.info(
"Start uploading files to s3 buckets: %s",
[target[1] for target in targets_]
[target[1] for target in targets]
)
failed_files = s3_client.upload_files(
file_paths=valid_mvn_paths,
Expand Down
2 changes: 1 addition & 1 deletion charon/pkgs/npm.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def handle_npm_uploading(
targets_ = [(target[1], remove_prefix(target[2], "/")) for target in targets]
logger.info(
"Start uploading files to s3 buckets: %s",
[target[1] for target in targets_]
[target[1] for target in targets]
)
failed_files = client.upload_files(
file_paths=valid_paths,
Expand Down
2 changes: 1 addition & 1 deletion charon/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ async def __copy_between_bucket(
Key=target_key
)
)
logger.info('Copy done')
logger.debug('Copy done')
return True
except (ClientError, HTTPClientError) as e:
logger.error(
Expand Down