Skip to content

Commit bbf3177

Browse files
committed
fix: move path resolution logging to debug instead of error
Signed-off-by: Brian McGee <brian@bmcgee.ie>
1 parent 3ba936c commit bbf3177

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)