Skip to content

Commit e11b55e

Browse files
authored
Merge pull request #148 from ligangty/main
Chore: fix a wrong logging item
2 parents 2bda94d + 1f1f1f9 commit e11b55e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charon/pkgs/maven.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def handle_maven_uploading(
307307
targets_ = [(target[1], remove_prefix(target[2], "/")) for target in targets]
308308
logger.info(
309309
"Start uploading files to s3 buckets: %s",
310-
[target[1] for target in targets_]
310+
[target[1] for target in targets]
311311
)
312312
failed_files = s3_client.upload_files(
313313
file_paths=valid_mvn_paths,

charon/pkgs/npm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def handle_npm_uploading(
100100
targets_ = [(target[1], remove_prefix(target[2], "/")) for target in targets]
101101
logger.info(
102102
"Start uploading files to s3 buckets: %s",
103-
[target[1] for target in targets_]
103+
[target[1] for target in targets]
104104
)
105105
failed_files = client.upload_files(
106106
file_paths=valid_paths,

charon/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ async def __copy_between_bucket(
302302
Key=target_key
303303
)
304304
)
305-
logger.info('Copy done')
305+
logger.debug('Copy done')
306306
return True
307307
except (ClientError, HTTPClientError) as e:
308308
logger.error(

0 commit comments

Comments
 (0)