diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-08-10 18:16:34 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-08-10 18:16:34 +0100 |
commit | 11043c12801e027ad1352dc1f5da943cafb640eb (patch) | |
tree | f5e9720de934b38812793a4297fdfd848fb524dd /src/plugins/lua/antivirus.lua | |
parent | cd994934d1f2bfd7ca484a5588c1d9911f140c35 (diff) | |
download | rspamd-11043c12801e027ad1352dc1f5da943cafb640eb.tar.gz rspamd-11043c12801e027ad1352dc1f5da943cafb640eb.zip |
[Feature] Use pure Lua debugm function
Diffstat (limited to 'src/plugins/lua/antivirus.lua')
-rw-r--r-- | src/plugins/lua/antivirus.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/plugins/lua/antivirus.lua b/src/plugins/lua/antivirus.lua index 6adabff3c..37c58bcf8 100644 --- a/src/plugins/lua/antivirus.lua +++ b/src/plugins/lua/antivirus.lua @@ -299,11 +299,11 @@ local function check_av_cache(task, digest, rule, fn) if data and type(data) == 'string' then -- Cached if data ~= 'OK' then - rspamd_logger.debugm(N, task, 'got cached result for %s: %s', key, data) + lua_util.debugm(N, task, 'got cached result for %s: %s', key, data) data = rspamd_str_split(data, '\x30') yield_result(task, rule, data) else - rspamd_logger.debugm(N, task, 'got cached result for %s: %s', key, data) + lua_util.debugm(N, task, 'got cached result for %s: %s', key, data) end else if err then @@ -341,7 +341,7 @@ local function save_av_cache(task, digest, rule, to_save) rspamd_logger.errx(task, 'failed to save virus cache for %s -> "%s": %s', to_save, key, err) else - rspamd_logger.debugm(N, task, 'saved cached result for %s: %s', key, to_save) + lua_util.debugm(N, task, 'saved cached result for %s: %s', key, to_save) end end @@ -491,13 +491,13 @@ local function clamav_check(task, content, digest, rule) upstream:ok() data = tostring(data) local cached - rspamd_logger.debugm(N, task, '%s [%s]: got reply: %s', rule['symbol'], rule['type'], data) + lua_util.debugm(N, task, '%s [%s]: got reply: %s', rule['symbol'], rule['type'], data) if data == 'stream: OK' then cached = 'OK' if rule['log_clean'] then rspamd_logger.infox(task, '%s [%s]: message is clean', rule['symbol'], rule['type']) else - rspamd_logger.debugm(N, task, '%s [%s]: message is clean', rule['symbol'], rule['type']) + lua_util.debugm(N, task, '%s [%s]: message is clean', rule['symbol'], rule['type']) end else local vname = string.match(data, 'stream: (.+) FOUND') @@ -644,7 +644,7 @@ local function savapi_check(task, content, digest, rule) for virus,_ in pairs(vnames) do table.insert(vnames_reordered, virus) end - rspamd_logger.debugm(N, task, "%s: number of virus names found %s", rule['type'], #vnames_reordered) + lua_util.debugm(N, task, "%s: number of virus names found %s", rule['type'], #vnames_reordered) if #vnames_reordered > 0 then local vname = {} for _,virus in ipairs(vnames_reordered) do @@ -661,7 +661,7 @@ local function savapi_check(task, content, digest, rule) local function savapi_scan2_cb(err, data, conn) local result = tostring(data) - rspamd_logger.debugm(N, task, "%s: got reply: %s", rule['type'], result) + lua_util.debugm(N, task, "%s: got reply: %s", rule['type'], result) -- Terminal response - clean if string.find(result, '200') or string.find(result, '210') then @@ -701,7 +701,7 @@ local function savapi_check(task, content, digest, rule) local function savapi_greet2_cb(err, data, conn) local result = tostring(data) if string.find(result, '100 PRODUCT') then - rspamd_logger.debugm(N, task, "%s: scanning file: %s", rule['type'], message_file) + lua_util.debugm(N, task, "%s: scanning file: %s", rule['type'], message_file) conn:add_write(savapi_scan1_cb, {string.format('SCAN %s\n', message_file)}) else rspamd_logger.errx(task, '%s: invalid product id %s', rule['type'], rule['product_id']) |