mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-10 06:00:45 +01:00
Hadrons: garbage collector debug output
This commit is contained in:
parent
70ec2faa98
commit
e485a07133
@ -632,6 +632,15 @@ void VirtualMachine::executeProgram(const Program &p) const
|
|||||||
// build garbage collection schedule
|
// build garbage collection schedule
|
||||||
LOG(Debug) << "Building garbage collection schedule..." << std::endl;
|
LOG(Debug) << "Building garbage collection schedule..." << std::endl;
|
||||||
freeProg = makeGarbageSchedule(p);
|
freeProg = makeGarbageSchedule(p);
|
||||||
|
for (unsigned int i = 0; i < freeProg.size(); ++i)
|
||||||
|
{
|
||||||
|
LOG(Debug) << std::setw(4) << i + 1 << ": [";
|
||||||
|
for (auto &a: freeProg[i])
|
||||||
|
{
|
||||||
|
std::cout << env().getObjectName(a) << " ";
|
||||||
|
}
|
||||||
|
std::cout << "]" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
// program execution
|
// program execution
|
||||||
LOG(Debug) << "Executing program..." << std::endl;
|
LOG(Debug) << "Executing program..." << std::endl;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user