Skip to content

Commit c002eca

Browse files
committed
feat: log out when a path is not matched to any formatter
Signed-off-by: Brian McGee <[email protected]>
1 parent 3c264c6 commit c002eca

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

cli/format.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ func (f *Format) Run() (err error) {
5757
}
5858

5959
// create a prefixed logger
60-
l := log.WithPrefix("format")
60+
log.SetPrefix("format")
6161

6262
// ensure cache is closed on return
6363
defer func() {
6464
if err := cache.Close(); err != nil {
65-
l.Errorf("failed to close cache: %v", err)
65+
log.Errorf("failed to close cache: %v", err)
6666
}
6767
}()
6868

@@ -87,7 +87,7 @@ func (f *Format) Run() (err error) {
8787
formatterCfg := cfg.Formatters[name]
8888
formatter, err := format.NewFormatter(name, Cli.TreeRoot, formatterCfg, globalExcludes)
8989
if errors.Is(err, format.ErrCommandNotFound) && Cli.AllowMissingFormatter {
90-
l.Debugf("formatter not found: %v", name)
90+
log.Debugf("formatter not found: %v", name)
9191
continue
9292
} else if err != nil {
9393
return fmt.Errorf("%w: failed to initialise formatter: %v", err, name)
@@ -383,6 +383,7 @@ func applyFormatters(ctx context.Context) func() error {
383383
if matched {
384384
stats.Add(stats.Matched, 1)
385385
} else {
386+
log.Debugf("no match found: %s", file.Path)
386387
// no match, so we send it direct to the processed channel
387388
processedCh <- file
388389
}

0 commit comments

Comments
 (0)