diff options
-rw-r--r-- | common/domain/applicationdomaintype.cpp | 2 |
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(); |