]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Pet luacheck
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 24 Aug 2021 09:53:27 +0000 (10:53 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 24 Aug 2021 09:53:27 +0000 (10:53 +0100)
lualib/lua_util.lua

index c4a925ed8ebd4a87dfef6670bc0a09b677d083c9..75d218da35a9b6ca766a83cc1260145302d16d3b 100644 (file)
@@ -1108,7 +1108,6 @@ end
 -- Performs fast debug log for a specific module
 --]]
 exports.debugm = function(mod, obj_or_fmt, fmt_or_something, ...)
-  local logger = require "rspamd_logger"
   if unconditional_debug or debug_modules[mod] then
     if type(obj_or_fmt) == 'string' then
       logger.logx(log_level, mod, '', 2, obj_or_fmt, fmt_or_something, ...)
@@ -1123,7 +1122,6 @@ end
 -- Add debugging alias so logging to `alias` will be treated as logging to `mod`
 --]]
 exports.add_debug_alias = function(mod, alias)
-  local logger = require "rspamd_logger"
   debug_aliases[alias] = mod
 
   if debug_modules[mod] then