local ngx = require("ngx") local function debug(message) ngx.log(ngx.DEBUG, message) end local function info(message) ngx.log(ngx.INFO, message) end return { debug = debug, info = info, }