summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libs/zbxlog/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/zbxlog/log.c b/src/libs/zbxlog/log.c
index a63fba23..a84ceebe 100644
--- a/src/libs/zbxlog/log.c
+++ b/src/libs/zbxlog/log.c
@@ -171,7 +171,7 @@ void zabbix_log(int level, const char *fmt, ...)
#endif /* _WINDOWS */
- if( (level > log_level) || (LOG_LEVEL_EMPTY == level))
+ if( (level != LOG_LEVEL_INFORMATION) && ((level > log_level) || (LOG_LEVEL_EMPTY == level)) )
{
return;
}