mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-25 16:38:21 -04:00
[modules] Use new convenience logging methods across the board
This commit is contained in:
parent
3f77fb1d16
commit
3315df5df1
14 changed files with 33 additions and 32 deletions
|
@ -426,6 +426,7 @@ PartitionViewStep::onLeave()
|
|||
|
||||
if ( !message.isEmpty() )
|
||||
{
|
||||
cWarning() << message;
|
||||
QMessageBox::warning( m_manualPartitionPage,
|
||||
message,
|
||||
description );
|
||||
|
@ -535,7 +536,7 @@ PartitionViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|||
gs->insert( "defaultFileSystemType", typeString );
|
||||
if ( FileSystem::typeForName( typeString ) == FileSystem::Unknown )
|
||||
{
|
||||
cDebug() << "WARNING: bad default filesystem configuration for partition module. Reverting to ext4 as default.";
|
||||
cWarning() << "bad default filesystem configuration for partition module. Reverting to ext4 as default.";
|
||||
gs->insert( "defaultFileSystemType", "ext4" );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue