From 94916f59e0b50109f649c05be38ac36996e56ec8 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Mon, 19 Sep 2016 12:34:45 +0200 Subject: [PATCH] Remove irrelevant debug output. --- src/libcalamaresui/modulesystem/ViewModule.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/libcalamaresui/modulesystem/ViewModule.cpp b/src/libcalamaresui/modulesystem/ViewModule.cpp index b7a94d0ea..ddc70d869 100644 --- a/src/libcalamaresui/modulesystem/ViewModule.cpp +++ b/src/libcalamaresui/modulesystem/ViewModule.cpp @@ -61,15 +61,16 @@ ViewModule::loadSelf() cDebug() << Q_FUNC_INFO << m_loader->errorString(); return; } - cDebug() << "ViewModule loading self for instance" << instanceKey() - << "\nViewModule at address" << this - << "\nCalamares::PluginFactory at address" << pf - << "\nViewStep at address" << m_viewStep; +// cDebug() << "ViewModule loading self for instance" << instanceKey() +// << "\nViewModule at address" << this +// << "\nCalamares::PluginFactory at address" << pf +// << "\nViewStep at address" << m_viewStep; m_viewStep->setModuleInstanceKey( instanceKey() ); m_viewStep->setConfigurationMap( m_configurationMap ); ViewManager::instance()->addViewStep( m_viewStep ); m_loaded = true; + cDebug() << "ViewModule" << instanceKey() << "loading complete."; } }