fix(SmartTransaction): log commit only after soci commit

This commit is contained in:
Ronan Abhamon 2018-02-26 17:17:56 +01:00
parent 5542d4e0f0
commit 1d46c11739

View file

@ -47,9 +47,9 @@ public:
}
void commit () {
mTransaction.commit();
mIsCommitted = true;
lInfo() << "Commit transaction " << this << " in MainDb::" << mName << ".";
mTransaction.commit();
}
private: