[partition] Improve logging readability

- The entire queue is one long output, so print them with SubEntry
main
Adriaan de Groot 5 years ago
parent 1155b6fc3d
commit 70bf033dc0

@ -659,10 +659,10 @@ PartitionCoreModule::dumpQueue() const
cDebug() << "# Queue:";
for ( auto info : m_deviceInfos )
{
cDebug() << "## Device:" << info->device->name();
cDebug() << Logger::SubEntry << "## Device:" << info->device->name();
for ( const auto& job : info->jobs() )
{
cDebug() << "-" << job->prettyName();
cDebug() << Logger::SubEntry << "-" << job->prettyName();
}
}
}

Loading…
Cancel
Save