X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=core%2Fusermanager.lua;h=925ac774071489eedae3dfae20bd3547d23f9452;hb=4341e61cc1ca8384a0ca18bad7f8f8f3f1c894b0;hp=04154cdb2ef5e4576f7cf33730768af2d30353ab;hpb=16d3c124a1acc91fb6a28e72fa116ef06bb0e485;p=prosody.git diff --git a/core/usermanager.lua b/core/usermanager.lua index 04154cdb..925ac774 100644 --- a/core/usermanager.lua +++ b/core/usermanager.lua @@ -6,10 +6,7 @@ -- COPYING file in the source package for more information. -- - - -require "util.datamanager" -local datamanager = datamanager; +local datamanager = require "util.datamanager"; local log = require "util.logger".init("usermanager"); local type = type; local error = error; @@ -77,7 +74,7 @@ function is_admin(jid, host) for _,admin in ipairs(admins) do if admin == jid then return true; end end - else log("debug", "Option core.admins is not a table"); end + elseif admins then log("warn", "Option 'admins' for host '%s' is not a table", host); end return nil; end