@@ -57,12 +57,12 @@ func (f *Format) Run() (err error) {
57
57
}
58
58
59
59
// create a prefixed logger
60
- l := log .WithPrefix ("format" )
60
+ log .SetPrefix ("format" )
61
61
62
62
// ensure cache is closed on return
63
63
defer func () {
64
64
if err := cache .Close (); err != nil {
65
- l .Errorf ("failed to close cache: %v" , err )
65
+ log .Errorf ("failed to close cache: %v" , err )
66
66
}
67
67
}()
68
68
@@ -87,7 +87,7 @@ func (f *Format) Run() (err error) {
87
87
formatterCfg := cfg .Formatters [name ]
88
88
formatter , err := format .NewFormatter (name , Cli .TreeRoot , formatterCfg , globalExcludes )
89
89
if errors .Is (err , format .ErrCommandNotFound ) && Cli .AllowMissingFormatter {
90
- l .Debugf ("formatter not found: %v" , name )
90
+ log .Debugf ("formatter not found: %v" , name )
91
91
continue
92
92
} else if err != nil {
93
93
return fmt .Errorf ("%w: failed to initialise formatter: %v" , err , name )
@@ -383,6 +383,7 @@ func applyFormatters(ctx context.Context) func() error {
383
383
if matched {
384
384
stats .Add (stats .Matched , 1 )
385
385
} else {
386
+ log .Debugf ("no match found: %s" , file .Path )
386
387
// no match, so we send it direct to the processed channel
387
388
processedCh <- file
388
389
}
0 commit comments