diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-09-04 19:58:04 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-09-04 19:58:04 +0100 |
commit | 1d0ad063163e6b1b4b91480574c126fce5f14a92 (patch) | |
tree | 7250ceae913dea81135b35bbd5c0f5811cf19ae2 /src/plugins/lua/rbl.lua | |
parent | 546f2ebf17fd4abb42e974c714d8df9d33648226 (diff) | |
download | rspamd-1d0ad063163e6b1b4b91480574c126fce5f14a92.tar.gz rspamd-1d0ad063163e6b1b4b91480574c126fce5f14a92.zip |
[Minor] Use infox instead of info in logging
Diffstat (limited to 'src/plugins/lua/rbl.lua')
-rw-r--r-- | src/plugins/lua/rbl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/rbl.lua b/src/plugins/lua/rbl.lua index d782d1c25..f22199b63 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -388,7 +388,7 @@ local opts = rspamd_config:get_all_opt('rbl') if not (opts and type(opts) == 'table') then rspamd_logger.info('Module is unconfigured') elseif opts['enabled'] == false then - rspamd_logger.info('Module is disabled') + rspamd_logger.infox(rspamd_config, 'module is disabled') return end |