Remove logs for every package (#3335)

This commit is contained in:
Hind-M 2024-07-23 13:32:55 +02:00 committed by GitHub
parent c6f2f24d5a
commit a10a532fd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 6 deletions

View File

@ -172,11 +172,6 @@ namespace mamba::solver::libsolv
} }
} }
} }
else
{
LOG_DEBUG << "No signatures available for '" << filename
<< "'. Downloading without verifying artifacts.";
}
} }
[[nodiscard]] auto set_solvable( [[nodiscard]] auto set_solvable(
@ -388,7 +383,6 @@ namespace mamba::solver::libsolv
if (parsed) if (parsed)
{ {
on_parsed(fn); on_parsed(fn);
LOG_DEBUG << "Adding package record to repo " << fn;
} }
else else
{ {
@ -572,6 +566,10 @@ namespace mamba::solver::libsolv
{ {
signatures = std::move(maybe_sigs).value(); signatures = std::move(maybe_sigs).value();
} }
else
{
LOG_DEBUG << "No signatures available or requested. Downloading without verifying artifacts.";
}
if (package_types == PackageTypes::CondaOrElseTarBz2) if (package_types == PackageTypes::CondaOrElseTarBz2)
{ {