diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-12-22 10:33:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 10:33:34 +0000 |
commit | 5cd7131d26a4859953e6b886c6f254676b4da54a (patch) | |
tree | 6f11323448e197227f76cc5933ac3155c54ab7da | |
parent | 9419ba3b7aaea1387cadeb782309782c10b7c08b (diff) | |
parent | 897d9ed8343b7ddcab4a16fde13a881e7b55a55f (diff) | |
download | rspamd-5cd7131d26a4859953e6b886c6f254676b4da54a.tar.gz rspamd-5cd7131d26a4859953e6b886c6f254676b4da54a.zip |
Merge pull request #3579 from fatalbanana/rbl_logging
[Minor] rbl: move logging to debug level
-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 dabf259e2..5878b2f3d 100644 --- a/src/plugins/lua/rbl.lua +++ b/src/plugins/lua/rbl.lua @@ -279,7 +279,7 @@ local function rbl_dns_process(task, rbl, to_resolve, results, err, resolve_tabl if rbl.unknown and rbl.symbol then insert_results(rbl.symbol, ipstr) else - rspamd_logger.errx(task, '%1 returned unknown result: %2', + lua_util.debugm(N, task, '%1 returned unknown result: %2', to_resolve, ipstr) end end |