Skip to content

Commit

Permalink
statusnotifier: Change log message to be more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
palinek authored and agaida committed Jun 5, 2019
1 parent 985b085 commit 8b353af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin-statusnotifier/sniasync.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class SniAsync : public QObject
{
QDBusPendingReply<QVariant> reply = *call;
if (reply.isError())
qDebug() << "Error on DBus request:" << reply.error();
qDebug().noquote().nospace() << "Error on DBus request(" << mSni.service() << ',' << mSni.path() << "): " << reply.error();
finished(qdbus_cast<typename std::function<typename call_signature<F>::type>::argument_type>(reply.value()));
call->deleteLater();
}
Expand Down

0 comments on commit 8b353af

Please sign in to comment.