Skip to content

Commit

Permalink
Merge pull request #12 from razbensimon/patch-1
Browse files Browse the repository at this point in the history
Make some important logs as "info" instead of "debug"
  • Loading branch information
jsmith authored Aug 14, 2021
2 parents 0eca0ae + a94ce12 commit 076cbed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ function getPreviousTag<
const previousTag = res[index + 1]

if (previousTag) {
core.debug(`Comparing ${previousTag}...${o.tag}`)
core.info(`Comparing ${previousTag}...${o.tag}`)
} else {
core.debug(`${o.tag} is the first tag`)
core.info(`${o.tag} is the first tag`)
}

return ok({
Expand Down Expand Up @@ -183,7 +183,7 @@ function getChangedFiles<
type: 'error'
})
).map(res => {
core.debug(`Found ${res.length} changed files`)
core.info(`Found ${res.length} changed files`)
return {
...o,
changedFiles: res
Expand Down

0 comments on commit 076cbed

Please sign in to comment.