summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-12 12:03:30 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-12 12:03:30 +0200
commitb5dbe2429b37357e2383ae22d144e6a4e04f6233 (patch)
tree7b50a1ddbf54cf9aabb5db47240abc8775dc9d17
parent76f14b0655a20b30bad49db4cd69f293b52349bf (diff)
downloadsink-b5dbe2429b37357e2383ae22d144e6a4e04f6233.tar.gz
sink-b5dbe2429b37357e2383ae22d144e6a4e04f6233.zip
Better debug output
-rw-r--r--common/domain/applicationdomaintype.cpp2
1 files changed, 1 insertions, 1 deletions
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
237 const auto path = getProperty(key).value<BLOB>().value; 237 const auto path = getProperty(key).value<BLOB>().value;
238 QFile file(path); 238 QFile file(path);
239 if (!file.open(QIODevice::ReadOnly)) { 239 if (!file.open(QIODevice::ReadOnly)) {
240 SinkError() << "Failed to open the file for reading: " << file.errorString() << path << " For property " << key; 240 SinkError() << "Failed to open the file for reading: " << file.errorString() << "Path:" << path << " For property:" << key;
241 return QByteArray(); 241 return QByteArray();
242 } 242 }
243 return file.readAll(); 243 return file.readAll();