Remove excessive debug output.
This commit is contained in:
parent
8b753bd65f
commit
69c9d91aa6
@ -47,7 +47,6 @@ ClearMountsJob::prettyName() const
|
|||||||
Calamares::JobResult
|
Calamares::JobResult
|
||||||
ClearMountsJob::exec()
|
ClearMountsJob::exec()
|
||||||
{
|
{
|
||||||
cDebug() << "Executing ClearMounts job for device" << m_device->deviceNode();
|
|
||||||
QStringList goodNews;
|
QStringList goodNews;
|
||||||
|
|
||||||
QProcess process;
|
QProcess process;
|
||||||
@ -63,9 +62,6 @@ ClearMountsJob::exec()
|
|||||||
QString partitions = process.readAllStandardOutput();
|
QString partitions = process.readAllStandardOutput();
|
||||||
QStringList partitionsList = partitions.simplified().split( ' ' );
|
QStringList partitionsList = partitions.simplified().split( ' ' );
|
||||||
|
|
||||||
cDebug() << "Raw:" << partitions;
|
|
||||||
cDebug() << "List:" << partitionsList.join( ", " );
|
|
||||||
|
|
||||||
foreach ( QString p, partitionsList )
|
foreach ( QString p, partitionsList )
|
||||||
{
|
{
|
||||||
QString partPath = QString( "/dev/%1" ).arg( p );
|
QString partPath = QString( "/dev/%1" ).arg( p );
|
||||||
@ -86,6 +82,5 @@ ClearMountsJob::exec()
|
|||||||
.arg( m_device->deviceNode() ) );
|
.arg( m_device->deviceNode() ) );
|
||||||
ok.setDetails( goodNews.join( "\n" ) );
|
ok.setDetails( goodNews.join( "\n" ) );
|
||||||
|
|
||||||
cDebug() << "Finished ClearMounts job.";
|
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user