change log prefix

This commit is contained in:
王劲鹏
2019-12-12 16:10:01 +08:00
parent 06f96f33fe
commit f88b454e9e
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ public:
NativeBridge(QObject *parent = nullptr) : QObject(parent) {}
Q_INVOKABLE void function(int contextId) {
qDebug() << contextId;
qDebug() << "contextId: " + QString::number(contextId);
}
};