diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-12 16:44:01 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-10-12 16:44:01 +0100 |
commit | c5721acc86dc48a171684441699d2a960c102d53 (patch) | |
tree | 5a905910022ce88c2223b8ec099451049f613ffa /src/plugins | |
parent | fba4e769f95e9fba554305e4e5893c397fd9f2fd (diff) | |
download | rspamd-c5721acc86dc48a171684441699d2a960c102d53.tar.gz rspamd-c5721acc86dc48a171684441699d2a960c102d53.zip |
[Minor] Remove stupid debugging
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/lua/whitelist.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/lua/whitelist.lua b/src/plugins/lua/whitelist.lua index 7e6052d24..1c8612386 100644 --- a/src/plugins/lua/whitelist.lua +++ b/src/plugins/lua/whitelist.lua @@ -207,7 +207,6 @@ local function whitelist_cb(symbol, rule, task) if not found_bl then final_mult = val[2] - lua_util.debugm(N, task, "hui4 final mult: %s", final_mult) end end end @@ -219,7 +218,6 @@ local function whitelist_cb(symbol, rule, task) table.insert(opts, dom .. ':d:-') found_bl = true final_mult = val[2] - lua_util.debugm(N, task, "hui2 final mult: %s", final_mult) end end end @@ -229,7 +227,6 @@ local function whitelist_cb(symbol, rule, task) if val[1] == 'both' or val[1] == 'bl' then found_bl = true final_mult = val[2] - lua_util.debugm(N, task, "hui3 final mult: %s", final_mult) table.insert(opts, string.format("%s:%s:-", dom, what)) end else @@ -238,7 +235,6 @@ local function whitelist_cb(symbol, rule, task) table.insert(opts, string.format("%s:%s:+", dom, what)) if not found_bl then final_mult = val[2] - lua_util.debugm(N, task, "hui1 final mult: %s", final_mult) end end end |