Skip to content

Commit 9d0a5b2

Browse files
committed
chore: log error in full
1 parent a39102c commit 9d0a5b2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

dist/action.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26292,6 +26292,7 @@ async function run() {
2629226292
});
2629326293
console.log("put: ", x);
2629426294
} catch (e) {
26295+
console.error(e);
2629526296
console.log("it didn't work", e.message, e.code, e.stack);
2629626297
// throw e;
2629726298
}

src/action.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ async function run() {
117117
});
118118
console.log("put: ", x);
119119
} catch (e) {
120+
console.error(e);
120121
console.log("it didn't work", e.message, e.code, e.stack);
121122
// throw e;
122123
}

0 commit comments

Comments
 (0)