Cosmetics: Fix coding style

This commit is contained in:
Felipe Zimmerle
2015-09-28 16:32:59 -03:00
parent f6e0b447b3
commit b497091017
48 changed files with 136 additions and 92 deletions

View File

@@ -70,9 +70,10 @@ int DebugLog::getDebugLogLevel() {
void DebugLog::write(int level, const std::string &msg) {
if (level <= m_debugLevel) {
DebugLogWriter::getInstance().write(m_fileName, "[" + std::to_string(level) + "] " + msg);
DebugLogWriter::getInstance().write(m_fileName, "[" \
+ std::to_string(level) + "] " + msg);
}
}
} // namespace ModSecurity
} // namespace ModSecurity