mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
Remove excessive debug output.
This commit is contained in:
parent
8b753bd65f
commit
69c9d91aa6
1 changed files with 0 additions and 5 deletions
|
@ -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…
Add table
Reference in a new issue