[plasmalnf] Fix debug-logging

- ProcessResult isn't loggable, so operator bool() is called, so
  it logged 'false' on failure which isn't helpful.
This commit is contained in:
Adriaan de Groot 2020-11-17 11:42:27 +01:00
parent 0a88273e0d
commit 04a6fbc4c4

View File

@ -150,7 +150,7 @@ Config::setTheme( const QString& id )
if ( r.getExitCode() )
{
cWarning() << r.explainProcess( command, std::chrono::seconds( 10 ) );
cWarning() << "Failed (" << r.getExitCode() << ')';
}
else
{