[finished] Warnings should be logged as such

This commit is contained in:
Adriaan de Groot 2019-05-06 09:53:24 +02:00
parent ef4196dbd8
commit d6c7e53966

View File

@ -123,10 +123,10 @@ FinishedViewStep::sendNotification()
QVariant( 0 ) QVariant( 0 )
); );
if ( !r.isValid() ) if ( !r.isValid() )
cDebug() << "Could not call notify for end of installation." << r.error(); cWarning() << "Could not call org.freedesktop.Notifications.Notify at end of installation." << r.error();
} }
else else
cDebug() << "Could not get dbus interface for notifications." << notify.lastError(); cWarning() << "Could not get dbus interface for notifications at end of installation." << notify.lastError();
} }