Skip to content

Commit

Permalink
refactor: fix debug message in root command
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickMenoti committed Sep 6, 2023
1 parent dc25520 commit 838ef7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/root/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (cmd *RootCmd) Run() error {
init := cmd.InitCmd(cmd.F)
err := init.Run(info)
if err != nil {
logger.Debug("Error while running build command called by dev command", zap.Error(err))
logger.Debug("Error while running init command called by root command", zap.Error(err))
return err
}

Expand Down

0 comments on commit 838ef7b

Please sign in to comment.