[calamares] More verbose failure in test-loader

This commit is contained in:
Adriaan de Groot 2018-09-27 20:45:13 +02:00
parent fe6e0d0b19
commit a749f041f0

View File

@ -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;
} }