Skip to content

Commit

Permalink
use console because we need string substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieudutour committed Feb 13, 2020
1 parent 83c4cf4 commit 575d299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function run() {
const commits = logs.split(SEPARATOR).map(x => ({ message: x.trim() }));
const bump = await analyzeCommits(
{},
{ commits, logger: { log: core.debug.bind(core) } }
{ commits, logger: { log: console.info.bind(console) } }
);

const newVersion = `${semver.inc(tag, bump || defaultBump)}${
Expand Down

0 comments on commit 575d299

Please sign in to comment.