changed qinfo syntax for travis error

This commit is contained in:
Hamed Masafi 2018-02-25 18:51:42 +03:30
parent f0fa6bd6bf
commit 71a59ac0a2
1 changed files with 2 additions and 2 deletions

View File

@ -419,8 +419,8 @@ Q_OUTOFLINE_TEMPLATE Query<T> *Query<T>::join(const QString &className)
.relationByClassNames(className, d->className);
if (!rel) {
qInfo("No relation between %s and %s",
qPrintable(d->className), qPrintable(className));
qInfo() << "No relation between" << d->className
<< "and" << className;
return this;
}