summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJannis Voelker <jannis.voelker@basyskom.com>2018-08-20 07:47:59 +0200
committerJannis Völker <jannis.voelker@basyskom.com>2018-08-20 06:54:16 +0000
commit4162843d50d71c6c2177bf28614ac69bdb42941f (patch)
tree742a8171435c966f3f8a74d01102dfcf83174cef
parent363e423d86039fecdb750dda15c680a2fcef5e4c (diff)
Use qCInfo in uacppclient.cpp
qCInfo is now used for all notifications about unimplemented services. Change-Id: Id47f7226b374c0eb590bef1789ba54c259abeab6 Reviewed-by: Frank Meerkoetter <frank.meerkoetter@basyskom.com>
-rw-r--r--src/plugins/opcua/uacpp/quacppclient.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/opcua/uacpp/quacppclient.cpp b/src/plugins/opcua/uacpp/quacppclient.cpp
index 815f741..bd6d784 100644
--- a/src/plugins/opcua/uacpp/quacppclient.cpp
+++ b/src/plugins/opcua/uacpp/quacppclient.cpp
@@ -95,7 +95,7 @@ bool QUACppClient::findServers(const QUrl &url, const QStringList &localeIds, co
Q_UNUSED(localeIds);
Q_UNUSED(serverUris);
- qInfo("The uacpp backend does not yet support the FindServers service.");
+ qCInfo(QT_OPCUA_PLUGINS_UACPP) << "The uacpp backend does not yet support the FindServers service.";
return false;
}
@@ -103,7 +103,7 @@ bool QUACppClient::findServers(const QUrl &url, const QStringList &localeIds, co
bool QUACppClient::batchRead(const QVector<QOpcUaReadItem> &nodesToRead)
{
Q_UNUSED(nodesToRead);
- qInfo("Batch read is currently not implemented in the uacpp backend");
+ qCInfo(QT_OPCUA_PLUGINS_UACPP) << "Batch read is currently not implemented in the uacpp backend";
return false;
}
@@ -111,7 +111,7 @@ bool QUACppClient::batchWrite(const QVector<QOpcUaWriteItem> &nodesToWrite)
{
Q_UNUSED(nodesToWrite);
- qInfo("Batch write is currently not implemented in the uacpp backend");
+ qCInfo(QT_OPCUA_PLUGINS_UACPP) << "Batch write is currently not implemented in the uacpp backend";
return false;
}
@@ -144,7 +144,7 @@ bool QUACppClient::deleteReference(const QOpcUaDeleteReferenceItem &referenceToD
{
Q_UNUSED(referenceToDelete);
- qCDebug(QT_OPCUA_PLUGINS_UACPP) << "deleteReference is not yet supported by the uacpp backend";
+ qCInfo(QT_OPCUA_PLUGINS_UACPP) << "deleteReference is not yet supported by the uacpp backend";
return false;
}