[partition] Improve debug-logging
- Use cDebug() instead of qDebug() - Be more chatty when selecting a bootloader installation path
This commit is contained in:
parent
92d9c9491a
commit
943f3fb1f9
@ -56,7 +56,6 @@
|
|||||||
#include <kpmcore/ops/removevolumegroupoperation.h>
|
#include <kpmcore/ops/removevolumegroupoperation.h>
|
||||||
|
|
||||||
// Qt
|
// Qt
|
||||||
#include <QDebug>
|
|
||||||
#include <QHeaderView>
|
#include <QHeaderView>
|
||||||
#include <QItemSelectionModel>
|
#include <QItemSelectionModel>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
@ -495,7 +494,7 @@ PartitionPage::updateBootLoaderInstallPath()
|
|||||||
QVariant var = m_ui->bootLoaderComboBox->currentData( BootLoaderModel::BootLoaderPathRole );
|
QVariant var = m_ui->bootLoaderComboBox->currentData( BootLoaderModel::BootLoaderPathRole );
|
||||||
if ( !var.isValid() )
|
if ( !var.isValid() )
|
||||||
return;
|
return;
|
||||||
qDebug() << "PartitionPage::updateBootLoaderInstallPath" << var.toString();
|
cDebug() << "PartitionPage::updateBootLoaderInstallPath" << var.toString();
|
||||||
m_core->setBootLoaderInstallPath( var.toString() );
|
m_core->setBootLoaderInstallPath( var.toString() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -503,6 +502,7 @@ void
|
|||||||
PartitionPage::updateSelectedBootLoaderIndex()
|
PartitionPage::updateSelectedBootLoaderIndex()
|
||||||
{
|
{
|
||||||
m_lastSelectedBootLoaderIndex = m_ui->bootLoaderComboBox->currentIndex();
|
m_lastSelectedBootLoaderIndex = m_ui->bootLoaderComboBox->currentIndex();
|
||||||
|
cDebug() << "Selected bootloader index" << m_lastSelectedBootLoaderIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user