mirror of https://github.com/mamba-org/mamba.git
Remove logs for every package (#3335)
This commit is contained in:
parent
c6f2f24d5a
commit
a10a532fd8
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue