mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 02:45:44 -05:00
[calamares] More verbose failure in test-loader
This commit is contained in:
parent
fe6e0d0b19
commit
a749f041f0
1 changed files with 6 additions and 1 deletions
|
@ -184,7 +184,12 @@ main( int argc, char* argv[] )
|
|||
cDebug() << count << p->prettyName();
|
||||
Calamares::JobResult r = p->exec();
|
||||
if ( !r )
|
||||
cDebug() << count << ".. failed" << r;
|
||||
{
|
||||
using TR = Logger::DebugRow<QString, QString>;
|
||||
cDebug() << count << ".. failed"
|
||||
<< TR( "summary", r.message() )
|
||||
<< TR( "details", r.details() );
|
||||
}
|
||||
++count;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue