diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2024-10-15 09:58:31 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-10-15 08:43:56 +0000 |
| commit | 7eb57b4aa460c38365f8c5aa77d06c3b750daa4b (patch) | |
| tree | 9c96caaa0aac849c839214f693a518eaa5aa3122 /pkg/manager | |
| parent | 14943bb8b0b96031f1ac7110e2bfa628c0ce9e30 (diff) | |
pkg/manager: lower the broken seed error message
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.
Diffstat (limited to 'pkg/manager')
| -rw-r--r-- | pkg/manager/seeds.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/manager/seeds.go b/pkg/manager/seeds.go index 1e674c2f9..3a83a0788 100644 --- a/pkg/manager/seeds.go +++ b/pkg/manager/seeds.go @@ -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) } |
