diff options
author | Andrew Lewis <nerf@judo.za.org> | 2020-12-21 09:07:53 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2020-12-21 09:12:14 +0200 |
commit | 897d9ed8343b7ddcab4a16fde13a881e7b55a55f (patch) | |
tree | 8e63a80b7057d5da42475218be40086ddfbc1341 /src/plugins/lua/rbl.lua | |
parent | b973bb1800bc272f9ebef56d46961ff64e036338 (diff) | |
download | rspamd-897d9ed8343b7ddcab4a16fde13a881e7b55a55f.tar.gz rspamd-897d9ed8343b7ddcab4a16fde13a881e7b55a55f.zip |
[Minor] rbl: move logging to debug level
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 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 |