Skip to content

Commit dd35fce

Browse files
authored
Merge pull request #562 from numtide/fix/logging
fix: move path resolution logging to debug instead of error
2 parents 3ba936c + bbf3177 commit dd35fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/format/format.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ func Run(v *viper.Viper, statz *stats.Stats, cmd *cobra.Command, paths []string)
222222
// the readers will ignore symlinks.
223223
func resolvePaths(paths []string, walkType walk.Type, treeRoot string) error {
224224
for i, path := range paths {
225-
log.Errorf("Resolving path '%s': %v", path, walkType)
225+
log.Debugf("Resolving path '%s': %v", path, walkType)
226226

227227
absolutePath, err := filepath.Abs(path)
228228
if err != nil {

0 commit comments

Comments
 (0)