util.cache: Add support for creating a proxy table to a cache, that looks and acts...
[prosody.git] / core / loggingmanager.lua
index 14dd43608b05612dccd09255ca25f345b7ce9075..e3a83817b5d239c2009bc0261b674ad71ef98b7b 100644 (file)
@@ -16,7 +16,8 @@ local math_max, rep = math.max, string.rep;
 local os_date = os.date;
 local getstyle, getstring = require "util.termcolours".getstyle, require "util.termcolours".getstring;
 local tostring = tostring;
-local select, unpack = select, table.unpack or unpack;
+local select = select;
+local unpack = table.unpack or unpack; --luacheck: ignore 113
 
 local config = require "core.configmanager";
 local logger = require "util.logger";