Skip to content

Commit

Permalink
pkg/manager: lower the broken seed error message
Browse files Browse the repository at this point in the history
Some seeds are arch-dependent, so it's to be expected that we do not
take them.

Ideally we should have been parsing the conditions in pkg/manager as
well, but for now it does not seem to be worth the refactoring effort.
  • Loading branch information
a-nogikh authored and dvyukov committed Oct 15, 2024
1 parent 14943bb commit 7eb57b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/manager/seeds.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func LoadSeeds(cfg *mgrconfig.Config, immutable bool) Seeds {
if inp.Prog == nil {
if inp.IsSeed {
brokenSeeds++
log.Errorf("seed %s is broken: %s", inp.Path, inp.Err)
log.Logf(0, "seed %s is broken: %s", inp.Path, inp.Err)
} else {
brokenCorpus = append(brokenCorpus, inp.Key)
}
Expand Down

0 comments on commit 7eb57b4

Please sign in to comment.