pmb.install: demote recommends logging (MR 2252)

Debug is the default loglevel, demote the "already visited" message to
verbose, as it isn't generally useful.

Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
This commit is contained in:
Caleb Connolly 2024-04-04 05:19:55 +02:00 committed by Oliver Smith
parent 71e7af57e6
commit 50c7983d26
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -1143,7 +1143,7 @@ def get_recommends(args: PmbArgs, packages, initial=True):
for package in packages:
if package in get_recommends_visited:
logging.debug(f"get_recommends: {package}: already visited")
logging.verbose(f"get_recommends: {package}: already visited")
continue
get_recommends_visited += [package]