Refactoring on Transaction class: adding comments and renaming variables

This commit is contained in:
Felipe Zimmerle
2016-01-14 11:58:40 -03:00
parent 6f1e6f37d7
commit 4db5cc7d26
19 changed files with 48 additions and 47 deletions

View File

@@ -39,7 +39,7 @@ bool LogData::evaluate(Rule *rule, Transaction *transaction) {
#ifndef NO_LOGS
transaction->debug(9, "Saving msg: " + msg);
#endif
transaction->rulesMessages.push_back(msg);
transaction->m_rulesMessages.push_back(msg);
transaction->serverLog(msg);
return true;
}