Remove excessive debug output.
This commit is contained in:
parent
8b753bd65f
commit
69c9d91aa6
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user