Skip to content

Commit

Permalink
Improve action log
Browse files Browse the repository at this point in the history
Change core.debug to core.info so it always shows and not only when in debug.
  • Loading branch information
jNullj committed Aug 18, 2023
1 parent 640567d commit 78551ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/docusaurus-swizzled-warning/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ async function run() {
body,
})

core.debug('Found changes and posted comment, done.')
core.info('Found changes and posted comment, done.')
return
}

core.debug('No changes found, done.')
core.info('No changes found, done.')
} catch (error) {
core.setFailed(error.message)
}
Expand Down

0 comments on commit 78551ff

Please sign in to comment.