Cleanup Derivation*Goal names
This commit is contained in:
@@ -42,7 +42,7 @@ DerivationBuildingGoal::DerivationBuildingGoal(
|
||||
throw;
|
||||
}
|
||||
|
||||
name = fmt("building of '%s' from in-memory derivation", worker.store.printStorePath(drvPath));
|
||||
name = fmt("building derivation '%s'", worker.store.printStorePath(drvPath));
|
||||
trace("created");
|
||||
|
||||
/* Prevent the .chroot directory from being
|
||||
|
||||
@@ -43,9 +43,7 @@ DerivationGoal::DerivationGoal(
|
||||
{
|
||||
this->drv = std::make_unique<Derivation>(drv);
|
||||
|
||||
name =
|
||||
fmt("building of '%s' from in-memory derivation",
|
||||
DerivedPath::Built{makeConstantStorePathRef(drvPath), drv.outputNames()}.to_string(worker.store));
|
||||
name = fmt("getting output '%s' from derivation '%s'", wantedOutput, worker.store.printStorePath(drvPath));
|
||||
trace("created");
|
||||
|
||||
mcExpectedBuilds = std::make_unique<MaintainCount<uint64_t>>(worker.expectedBuilds);
|
||||
|
||||
@@ -31,7 +31,7 @@ DerivationTrampolineGoal::DerivationTrampolineGoal(
|
||||
void DerivationTrampolineGoal::commonInit()
|
||||
{
|
||||
name =
|
||||
fmt("outer obtaining drv from '%s' and then building outputs %s",
|
||||
fmt("obtaining derivation from '%s' and then building outputs %s",
|
||||
drvReq->to_string(worker.store),
|
||||
std::visit(
|
||||
overloaded{
|
||||
|
||||
Reference in New Issue
Block a user