change log prefix
This commit is contained in:
parent
06f96f33fe
commit
f88b454e9e
@ -39,7 +39,7 @@ void NativeDriver::invokeContextEntityMethod(int contextId, QString* method, ...
|
|||||||
.property(Constant::GLOBAL_DORIC)
|
.property(Constant::GLOBAL_DORIC)
|
||||||
.property(Constant::DORIC_CONTEXT_INVOKE)
|
.property(Constant::DORIC_CONTEXT_INVOKE)
|
||||||
.call(*arguments);
|
.call(*arguments);
|
||||||
qDebug() << result.toString();
|
qDebug() << "invokeContextEntityMethod: " + result.toString();
|
||||||
delete arguments;
|
delete arguments;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ public:
|
|||||||
NativeBridge(QObject *parent = nullptr) : QObject(parent) {}
|
NativeBridge(QObject *parent = nullptr) : QObject(parent) {}
|
||||||
|
|
||||||
Q_INVOKABLE void function(int contextId) {
|
Q_INVOKABLE void function(int contextId) {
|
||||||
qDebug() << contextId;
|
qDebug() << "contextId: " + QString::number(contextId);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user