mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 10:25:36 -04:00
[partition] Improve logging readability
- The entire queue is one long output, so print them with SubEntry
This commit is contained in:
parent
1155b6fc3d
commit
70bf033dc0
1 changed files with 2 additions and 2 deletions
|
@ -659,10 +659,10 @@ PartitionCoreModule::dumpQueue() const
|
||||||
cDebug() << "# Queue:";
|
cDebug() << "# Queue:";
|
||||||
for ( auto info : m_deviceInfos )
|
for ( auto info : m_deviceInfos )
|
||||||
{
|
{
|
||||||
cDebug() << "## Device:" << info->device->name();
|
cDebug() << Logger::SubEntry << "## Device:" << info->device->name();
|
||||||
for ( const auto& job : info->jobs() )
|
for ( const auto& job : info->jobs() )
|
||||||
{
|
{
|
||||||
cDebug() << "-" << job->prettyName();
|
cDebug() << Logger::SubEntry << "-" << job->prettyName();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue