* Minor fix for DB log levels.

--HG--
branch : trunk
This commit is contained in:
XTZGZoReX
2009-03-21 12:13:32 +01:00
parent 79d27da9ec
commit f1b680826b

View File

@@ -541,7 +541,7 @@ void Log::outDetail( const char * str, ... )
if( !str )
return;
if (m_enableLogDB && m_dbLogLevel >= LOGL_BASIC)
if (m_enableLogDB && m_dbLogLevel > LOGL_BASIC)
{
va_list ap2;
va_start(ap2, str);
@@ -600,7 +600,7 @@ void Log::outDebug( const char * str, ... )
if( !str )
return;
if (m_enableLogDB && m_dbLogLevel >= LOGL_DETAIL)
if (m_enableLogDB && m_dbLogLevel > LOGL_DETAIL)
{
va_list ap2;
va_start(ap2, str);