Skip to content

Commit

Permalink
fix: issue notices as debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
aslafy-z committed Sep 23, 2023
1 parent 708ac64 commit 455dae7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function main() {

if (action == "run" || action == "add") {
for (const file of problemMatcherFiles) {
console.log(`Add matcher: ${file}`)
core.debug(`Add matcher: ${file}`)
console.log(`::add-matcher::${file}`)
}
}
Expand All @@ -30,7 +30,7 @@ async function main() {

if (action == "run" || action == "remove") {
for (const owner of owners) {
console.log(`Remove matcher: ${owner}`);
core.debug(`Remove matcher: ${owner}`);
console.log(`::remove-matcher owner=${owner}::`);
}
}
Expand Down

0 comments on commit 455dae7

Please sign in to comment.