aboutsummaryrefslogtreecommitdiffstats
path: root/core/loggingmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-09-11 19:32:12 +0200
committerKim Alvefur <zash@zash.se>2017-09-11 19:32:12 +0200
commitf125342f41c0e398749b42d7a202d1d364aded71 (patch)
tree62dd160332e6bf74c05958cf2f6be153e385830b /core/loggingmanager.lua
parent0867e29552f4fd7c041f696be1b45a3a78b84cfd (diff)
downloadprosody-f125342f41c0e398749b42d7a202d1d364aded71.tar.gz
prosody-f125342f41c0e398749b42d7a202d1d364aded71.zip
loggingmanager, mod_posix: Import util.format correctly (fixes #985)
Diffstat (limited to 'core/loggingmanager.lua')
-rw-r--r--core/loggingmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index 2e9590fe..3d469bed 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -7,7 +7,7 @@
--
-- luacheck: globals log prosody.log
-local format = require "util.format";
+local format = require "util.format".format;
local setmetatable, rawset, pairs, ipairs, type =
setmetatable, rawset, pairs, ipairs, type;
local stdout = io.stdout;