[libcalamares] Change debug logging of how job name is derived

This commit is contained in:
Adriaan de Groot 2018-01-17 06:20:55 -05:00
parent abc6914528
commit 97fb83c743

View File

@ -322,7 +322,7 @@ PythonJob::exec()
} }
if ( !m_description.isEmpty() ) if ( !m_description.isEmpty() )
{ {
cDebug() << "Job" << prettyName() << "(func) ->" << m_description; cDebug() << "Job description from pretty_name" << prettyName() << "=" << m_description;
emit progress( 0 ); emit progress( 0 );
} }
} }
@ -337,7 +337,7 @@ PythonJob::exec()
auto i_newline = m_description.indexOf('\n'); auto i_newline = m_description.indexOf('\n');
if ( i_newline > 0 ) if ( i_newline > 0 )
m_description.truncate( i_newline ); m_description.truncate( i_newline );
cDebug() << "Job" << prettyName() << "(doc) ->" << m_description; cDebug() << "Job description from __doc__" << prettyName() << "=" << m_description;
emit progress( 0 ); emit progress( 0 );
} }
} }