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
commita5f43007f15cd3673ec0bf16f9644188624f541a (patch)
tree57662237764dd4d14e0e0ea642f9f5e954ce3046 /core
parent35717a1e41b6b9364adfb4a6de39418f0f241f57 (diff)
downloadprosody-a5f43007f15cd3673ec0bf16f9644188624f541a.tar.gz
prosody-a5f43007f15cd3673ec0bf16f9644188624f541a.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";