chore(cli): remove unused log debug

main
Tran Hau 2021-01-07 11:32:08 +07:00
parent db0c2e2c1f
commit d823f6799d
1 changed files with 0 additions and 3 deletions

View File

@ -113,17 +113,14 @@ func (a *action) Run(c *cli.Context) error {
return cli.ShowAppHelp(c)
}
// Set up
a.getFlags(c)
commits, err := a.getCommits()
if err != nil {
return err
}
a.logDebug("commits %+v", commits)
conventionalCommits := a.getConventionalCommits(commits)
a.logDebug("conventional commits %+v", conventionalCommits)
if err := a.generateChangelog(conventionalCommits); err != nil {
return err