[calamares] More verbose failure in test-loader
This commit is contained in:
parent
fe6e0d0b19
commit
a749f041f0
@ -184,7 +184,12 @@ main( int argc, char* argv[] )
|
|||||||
cDebug() << count << p->prettyName();
|
cDebug() << count << p->prettyName();
|
||||||
Calamares::JobResult r = p->exec();
|
Calamares::JobResult r = p->exec();
|
||||||
if ( !r )
|
if ( !r )
|
||||||
cDebug() << count << ".. failed" << r;
|
{
|
||||||
|
using TR = Logger::DebugRow<QString, QString>;
|
||||||
|
cDebug() << count << ".. failed"
|
||||||
|
<< TR( "summary", r.message() )
|
||||||
|
<< TR( "details", r.details() );
|
||||||
|
}
|
||||||
++count;
|
++count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user