Cosmetics: Reduce the coding style warnings

This commit is contained in:
Felipe Zimmerle
2016-03-21 15:32:02 -03:00
parent c43391072c
commit 214cc15785
7 changed files with 22 additions and 25 deletions

View File

@@ -1195,7 +1195,8 @@ int Transaction::processLogging(int returned_code) {
#endif
std::list<std::pair<int, std::string>>::iterator it;
parts = this->m_rules->audit_log->m_parts;
debug(7, "AuditLog parts before modification(s): " + std::to_string(parts) + ".");
debug(7, "AuditLog parts before modification(s): " +
std::to_string(parts) + ".");
for (it = m_auditLogModifier.begin();
it != m_auditLogModifier.end(); ++it) {
std::pair <int, std::string> p = *it;
@@ -1219,7 +1220,8 @@ int Transaction::processLogging(int returned_code) {
bool saved = this->m_rules->audit_log->saveIfRelevant(this, parts);
if (saved) {
#ifndef NO_LOGS
debug(8, "Request was relevant to be saved. Parts: " + std::to_string(parts));
debug(8, "Request was relevant to be saved. Parts: " +
std::to_string(parts));
#endif
}
}