Skip to content

Commit

Permalink
[temp] Always log at log level DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear authored and eibma committed Mar 11, 2014
1 parent 128426f commit a49b933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/utils/log.cpp
Expand Up @@ -68,7 +68,7 @@ void CLog::Log(int loglevel, const char *format, ... )
CSingleLock waitLock(critSec);
int extras = (loglevel >> LOGMASKBIT) << LOGMASKBIT;
loglevel = loglevel & LOGMASK;
#if !(defined(_DEBUG) || defined(PROFILE))
#if 0
if (m_logLevel > LOG_LEVEL_NORMAL ||
(m_logLevel > LOG_LEVEL_NONE && loglevel >= LOGNOTICE))
#endif
Expand Down

0 comments on commit a49b933

Please sign in to comment.