Software / code / verse
File
libs/logger.lua @ 144:46e933d81024
docs/example_jingle.lua: Update to use content.type instead of content.name for checking the kind of content we're receiving
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 17 Sep 2010 16:42:50 +0100 |
| parent | 127:8f831f259cea |
line wrap: on
line source
local select, tostring = select, tostring; local io_write = io.write; module "logger" local function format(format, ...) local n, maxn = 0, #arg; return (format:gsub("%%(.)", function (c) if c ~= "%" and n <= maxn then n = n + 1; return tostring(arg[n]); end end)); end local function format(format, ...) local n, maxn = 0, select('#', ...); local arg = { ... }; return (format:gsub("%%(.)", function (c) if n <= maxn then n = n + 1; return tostring(arg[n]); end end)); end function init(name) return function (level, message, ...) io_write(level, "\t", format(message, ...), "\n"); end end return _M;