From 44f8a7ae4789db7ba0005267c3ac31bca7ecf5ae Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 6 Oct 2020 11:03:55 +0200 Subject: [PATCH] [libcalamares] Reduce chattiness again of job progress --- src/libcalamares/JobQueue.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libcalamares/JobQueue.cpp b/src/libcalamares/JobQueue.cpp index 15c085b7e..526cd70bf 100644 --- a/src/libcalamares/JobQueue.cpp +++ b/src/libcalamares/JobQueue.cpp @@ -175,14 +175,8 @@ private: if ( m_jobIndex < m_runningJobs->count() ) { const auto& jobitem = m_runningJobs->at( m_jobIndex ); - cDebug() << "Job" << ( m_jobIndex + 1 ) << jobitem.job->prettyName() << "+wt" << jobitem.weight << "start.wt" - << jobitem.cumulative; progress = ( jobitem.cumulative + jobitem.weight * percentage ) / m_overallQueueWeight; message = jobitem.job->prettyStatusMessage(); - cDebug() << Logger::SubEntry << ( double( int( percentage * 1000 ) ) / 10.0 ) << "% +wt" - << ( jobitem.weight * percentage ) << " completed.wt" - << ( jobitem.cumulative + jobitem.weight * percentage ) << "tot %" - << ( double( int( progress * 1000 ) ) / 10.0 ); } else {