Skip to content

Commit

Permalink
refactor: Log messages start with lowercase
Browse files Browse the repository at this point in the history
Signed-off-by: AlexNg <contact@ngjx.org>
  • Loading branch information
caffeine-addictt committed Oct 16, 2024
1 parent 4cd67a6 commit 819dd58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/commands/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,14 @@ var NewCmd = &cobra.Command{
}

// Get file paths
log.Infoln("Getting file paths...")
log.Infoln("getting file paths...")
paths, err := utils.WalkDirRecursive(rootDir)
if err != nil {
return errors.ToWakuError(err)
}

// Handle ignores
log.Infoln("Applying ignores...")
log.Infoln("applying ignore rules...")
ignoreRules := types.NewSet(
".git/",
"LICENSE*",
Expand Down

0 comments on commit 819dd58

Please sign in to comment.