mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 03:34:29 +03:00
Cosmetics: Fix coding style
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user