Skip to content

Commit 1ed650c

Browse files
committed
[index.ts] Output error stack
1 parent 47148cb commit 1ed650c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8199,7 +8199,7 @@ function run() {
81998199
core.setOutput('issue_number', output.issueNumber.toString());
82008200
}
82018201
catch (error) {
8202-
core.debug(error.stack);
8202+
core.error(error.stack);
82038203
core.setFailed(error.message);
82048204
}
82058205
});

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async function run() {
4242
core.setOutput('issue_number', output.issueNumber.toString())
4343

4444
} catch (error) {
45-
core.debug(error.stack)
45+
core.error(error.stack)
4646
core.setFailed(error.message)
4747
}
4848
}

0 commit comments

Comments
 (0)