aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-09-11 19:32:51 +0200
committerKim Alvefur <zash@zash.se>2017-09-11 19:32:51 +0200
commit437e9ef7faf96068d68a836386e14435a18252f7 (patch)
tree57662237764dd4d14e0e0ea642f9f5e954ce3046 /core
parentf125342f41c0e398749b42d7a202d1d364aded71 (diff)
downloadprosody-437e9ef7faf96068d68a836386e14435a18252f7.tar.gz
prosody-437e9ef7faf96068d68a836386e14435a18252f7.zip
core.loggingmanager: Remove now unused locals [luacheck]
Diffstat (limited to 'core')
-rw-r--r--core/loggingmanager.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index 3d469bed..6dc1c1d1 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -15,9 +15,6 @@ local io_open = io.open;
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 = select;
-local unpack = table.unpack or unpack; --luacheck: ignore 113
local config = require "core.configmanager";
local logger = require "util.logger";