Commit 90410a00 authored by winckel's avatar winckel

Modified log level handling; log is done if:

- level >= c->level
       or
- level >= g_log->level

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4690 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 874e220e
......@@ -611,8 +611,7 @@ void logRecord_mt(const char *file, const char *func, int line, int comp,
// do not apply filtering for LOG_F
// only log messages which are enabled and are below the global log level and component's level threshold
if ((level != LOG_FILE) && ((c->level > g_log->level) || (level > c->level)
|| (level > g_log->level))) {
if ((level != LOG_FILE) && ((level > c->level) && (level > g_log->level))) {
return;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment