Skip to content

Commit 3498740

Browse files
committed
Adding debug on top of de867eb
1 parent de867eb commit 3498740

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

action.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,10 @@ exports.action = async function action() {
362362
try {
363363
return await actionImpl();
364364
} catch (error) {
365-
console.error(error);
365+
console.error(
366+
"Caught error while running action, is the Asana ticket in the Current Sprint board?"
367+
);
368+
console.error(error, JSON.stringify(error.value));
366369
core.setFailed(error.message);
367370
throw error;
368371
}

0 commit comments

Comments
 (0)