mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-25 03:15:44 -05:00
[libcalamares] Improve GS debugDump() formatting
This commit is contained in:
parent
c64aefe43c
commit
527449a102
1 changed files with 2 additions and 1 deletions
|
@ -88,9 +88,10 @@ GlobalStorage::value( const QString& key ) const
|
|||
void
|
||||
GlobalStorage::debugDump() const
|
||||
{
|
||||
cDebug() << "GlobalStorage" << Logger::Pointer(this) << m.count() << "items";
|
||||
for ( auto it = m.cbegin(); it != m.cend(); ++it )
|
||||
{
|
||||
cDebug() << it.key() << '\t' << it.value();
|
||||
cDebug() << Logger::SubEntry << it.key() << '\t' << it.value();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue