From b5dbe2429b37357e2383ae22d144e6a4e04f6233 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 12 Apr 2017 12:03:30 +0200 Subject: Better debug output --- common/domain/applicationdomaintype.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/domain/applicationdomaintype.cpp b/common/domain/applicationdomaintype.cpp index 44f5a75..67d463f 100644 --- a/common/domain/applicationdomaintype.cpp +++ b/common/domain/applicationdomaintype.cpp @@ -237,7 +237,7 @@ QByteArray ApplicationDomainType::getBlobProperty(const QByteArray &key) const const auto path = getProperty(key).value().value; QFile file(path); if (!file.open(QIODevice::ReadOnly)) { - SinkError() << "Failed to open the file for reading: " << file.errorString() << path << " For property " << key; + SinkError() << "Failed to open the file for reading: " << file.errorString() << "Path:" << path << " For property:" << key; return QByteArray(); } return file.readAll(); -- cgit v1.2.3