On Fri, 2023-02-10 at 07:03 +0100, Michał Górny wrote:
> On Thu, 2023-02-09 at 12:48 -0800, Georgy Yakovlev wrote:
> > to avoid possible log file pollution
> >
> > Signed-off-by: Georgy Yakovlev <gyakov...@gentoo.org>
> > ---
> > eclass/cargo.eclass | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass
> > index 9c624d607cdd..0ab7ee0dc9b2 100644
> > --- a/eclass/cargo.eclass
> > +++ b/eclass/cargo.eclass
> > @@ -273,6 +273,7 @@ cargo_gen_config() {
> > [term]
> > verbose = true
> > $([[ "${NOCOLOR}" = true || "${NOCOLOR}" = yes ]] && echo
> > "color = 'never'")
> > + progress.when = "never"
> > $(_cargo_gen_git_config)
> > _EOF_
> >
>
> What's that and why don't we want it? I thought we generally
> preferred
> more verbosity.
>
This knob controls progress bar that can pollute logs in rare cases,
not build verbosity. verbose is set just above.