diff options
Diffstat (limited to 'src/plugins/lua/antivirus.lua')
-rw-r--r-- | src/plugins/lua/antivirus.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/lua/antivirus.lua b/src/plugins/lua/antivirus.lua index e39ddc5ba..5337f6666 100644 --- a/src/plugins/lua/antivirus.lua +++ b/src/plugins/lua/antivirus.lua @@ -258,7 +258,7 @@ if opts and type(opts) == 'table' then for _, p in ipairs(m['patterns']) do if type(p) == 'table' then for sym in pairs(p) do - rspamd_logger.debugm(N, rspamd_config, 'registering: %1', { + lua_util.debugm(N, rspamd_config, 'registering: %1', { type = 'virtual', name = sym, parent = m['symbol'], @@ -292,7 +292,7 @@ if opts and type(opts) == 'table' then for _, p in ipairs(m['patterns_fail']) do if type(p) == 'table' then for sym in pairs(p) do - rspamd_logger.debugm(N, rspamd_config, 'registering: %1', { + lua_util.debugm(N, rspamd_config, 'registering: %1', { type = 'virtual', name = sym, parent = m['symbol'], |