Yet another fix on the debuglogs merge

This commit is contained in:
Felipe Zimmerle 2017-03-28 18:11:31 -03:00
parent cf4deaa3a0
commit 5f60bb5224
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -371,13 +371,12 @@ class RulesProperties {
if (from->m_debugLog && to->m_debugLog && if (from->m_debugLog && to->m_debugLog &&
from->m_debugLog->isLogLevelSet()) { from->m_debugLog->isLogLevelSet()) {
if (to->m_debugLog->isLogFileSet() == false) { if (to->m_debugLog->isLogLevelSet() == false) {
to->m_debugLog->setDebugLogLevel( to->m_debugLog->setDebugLogLevel(
from->m_debugLog->getDebugLogLevel()); from->m_debugLog->getDebugLogLevel());
} }
} }
return amount_of_rules; return amount_of_rules;
} }