Software /
code /
prosody
Comparison
util/logger.lua @ 7130:2b48ce0bfe7d
util.logger: Remove unused locals
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 04 Feb 2016 16:38:56 +0100 |
parent | 6777:5de6b93d0190 |
child | 7131:ea3eea291321 |
comparison
equal
deleted
inserted
replaced
7129:e4c886946ecb | 7130:2b48ce0bfe7d |
---|---|
4 -- | 4 -- |
5 -- This project is MIT/X11 licensed. Please see the | 5 -- This project is MIT/X11 licensed. Please see the |
6 -- COPYING file in the source package for more information. | 6 -- COPYING file in the source package for more information. |
7 -- | 7 -- |
8 | 8 |
9 local pcall = pcall; | 9 local pairs = pairs; |
10 | |
11 local find = string.find; | |
12 local ipairs, pairs, setmetatable = ipairs, pairs, setmetatable; | |
13 | 10 |
14 local _ENV = nil; | 11 local _ENV = nil; |
15 | 12 |
16 local level_sinks = {}; | 13 local level_sinks = {}; |
17 | 14 |