Skip to content

Commit 2d04cf8

Browse files
authored
fix: add missing error log (#59)
* add missing error log * Update get-ca-config.ts
1 parent 87636f5 commit 2d04cf8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/get-ca-config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,10 @@ export const getCodeArtifactConfig = async (
6363
if (e instanceof AggregateError) throw e;
6464

6565
if (isAWSError(e)) {
66+
console.error(e);
6667
errors.push(getError('EAWSSDK', { message: e.message, name: e.name }));
6768
} else {
69+
console.error(e);
6870
errors.push(
6971
getError('EAWSSDK', {
7072
name: 'UnknownException',

0 commit comments

Comments
 (0)