forked from lix-project/hydra
Add some debug code
This commit is contained in:
parent
5a1f2a50e5
commit
c0fac52872
|
@ -246,7 +246,11 @@ system_time State::doDispatch()
|
||||||
auto & step(stepInfo.step);
|
auto & step(stepInfo.step);
|
||||||
|
|
||||||
/* Can this machine do this step? */
|
/* Can this machine do this step? */
|
||||||
if (!mi.machine->supportsStep(step)) continue;
|
if (!mi.machine->supportsStep(step)) {
|
||||||
|
debug("machine '%s' does not support step '%s' (system type '%s')",
|
||||||
|
mi.machine->sshName, step->drvPath, step->drv.platform);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
/* Let's do this step. Remove it from the runnable
|
/* Let's do this step. Remove it from the runnable
|
||||||
list. FIXME: O(n). */
|
list. FIXME: O(n). */
|
||||||
|
|
Loading…
Reference in a new issue