[libcalamaresui] Remove spurious Q_FUNC_INFO

This commit is contained in:
Adriaan de Groot 2020-05-19 15:06:43 +02:00
parent 3e51fe4651
commit 8db8752a41
2 changed files with 5 additions and 5 deletions

View File

@ -52,14 +52,14 @@ CppJobModule::loadSelf()
CalamaresPluginFactory* pf = qobject_cast< CalamaresPluginFactory* >( m_loader->instance() ); CalamaresPluginFactory* pf = qobject_cast< CalamaresPluginFactory* >( m_loader->instance() );
if ( !pf ) if ( !pf )
{ {
cDebug() << Q_FUNC_INFO << m_loader->errorString(); cDebug() << "Could not load module:" << m_loader->errorString();
return; return;
} }
CppJob* cppJob = pf->create< Calamares::CppJob >(); CppJob* cppJob = pf->create< Calamares::CppJob >();
if ( !cppJob ) if ( !cppJob )
{ {
cDebug() << Q_FUNC_INFO << m_loader->errorString(); cDebug() << "Could not load module:" << m_loader->errorString();
return; return;
} }
// cDebug() << "CppJobModule loading self for instance" << instanceKey() // cDebug() << "CppJobModule loading self for instance" << instanceKey()

View File

@ -53,14 +53,14 @@ ViewModule::loadSelf()
CalamaresPluginFactory* pf = qobject_cast< CalamaresPluginFactory* >( m_loader->instance() ); CalamaresPluginFactory* pf = qobject_cast< CalamaresPluginFactory* >( m_loader->instance() );
if ( !pf ) if ( !pf )
{ {
cWarning() << Q_FUNC_INFO << "No factory:" << m_loader->errorString(); cWarning() << "No factory:" << m_loader->errorString();
return; return;
} }
m_viewStep = pf->create< Calamares::ViewStep >(); m_viewStep = pf->create< Calamares::ViewStep >();
if ( !m_viewStep ) if ( !m_viewStep )
{ {
cWarning() << Q_FUNC_INFO << "create() failed" << m_loader->errorString(); cWarning() << "create() failed" << m_loader->errorString();
return; return;
} }
} }
@ -76,7 +76,7 @@ ViewModule::loadSelf()
} }
else else
{ {
cWarning() << Q_FUNC_INFO << "No view step was created"; cWarning() << "No view step was created";
} }
} }