Commit fdae2754 authored by Lionel Gauthier's avatar Lionel Gauthier

bug component level

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5464 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent e2cd67c0
......@@ -478,6 +478,7 @@ void logRecord_thread_safe(const char *file, const char *func,
return;
}
vcd_signal_dumper_dump_function_by_name(VCD_SIGNAL_DUMPER_FUNCTIONS_LOG_RECORD,
VCD_FUNCTION_IN);
......@@ -627,13 +628,13 @@ 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) && ((level > c->level) && (level > g_log->level))) {
if ((level != LOG_FILE) && ((level > c->level) || (level > g_log->level))) {
/* if ((level != LOG_FILE) &&
((level > c->level) ||
(level > g_log->level) ||
( c->level > g_log->level))) {
*/
return;
return;
}
vcd_signal_dumper_dump_function_by_name(VCD_SIGNAL_DUMPER_FUNCTIONS_LOG_RECORD,
......
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