Remove excessive debug output.

This commit is contained in:
Teo Mrnjavac 2015-02-13 14:03:38 +01:00
parent 8b753bd65f
commit 69c9d91aa6

View File

@ -47,7 +47,6 @@ ClearMountsJob::prettyName() const
Calamares::JobResult
ClearMountsJob::exec()
{
cDebug() << "Executing ClearMounts job for device" << m_device->deviceNode();
QStringList goodNews;
QProcess process;
@ -63,9 +62,6 @@ ClearMountsJob::exec()
QString partitions = process.readAllStandardOutput();
QStringList partitionsList = partitions.simplified().split( ' ' );
cDebug() << "Raw:" << partitions;
cDebug() << "List:" << partitionsList.join( ", " );
foreach ( QString p, partitionsList )
{
QString partPath = QString( "/dev/%1" ).arg( p );
@ -86,6 +82,5 @@ ClearMountsJob::exec()
.arg( m_device->deviceNode() ) );
ok.setDetails( goodNews.join( "\n" ) );
cDebug() << "Finished ClearMounts job.";
return ok;
}