The natural logger for Lua
lua
Go to file
Cadey Ratio 494e61ac43 release to luarocks 2019-12-25 13:40:35 +00:00
spec initial commit 2019-12-25 13:32:59 +00:00
src initial commit 2019-12-25 13:32:59 +00:00
LICENSE initial commit 2019-12-25 13:32:59 +00:00
README.md initial commit 2019-12-25 13:32:59 +00:00
ln-scm-1.rockspec release to luarocks 2019-12-25 13:40:35 +00:00
test.sh initial commit 2019-12-25 13:32:59 +00:00

README.md

ln: The Natural Logger for Lua

This is a clone of ln for Lua. ln works by using key->value pairs to create structured logging output. By default, this outputs logs formatted similar to logfmt.

Example:

local ln = require "ln"

ln.log {foo = "bar"}
-- time="2019-12-25T13:24:00" foo=bar

It also supports multiple tables:

local ln = require "ln"

ln.log({foo = "bar"}, {needs_space = "a string value with spaces"})
-- time="2019-12-25T13:24:00" foo=bar needs_space="a string value with spaces"

And logging errors:

local ln = require "ln"

local result, err = thing_that_could_fail()
if err ~= nil then
  ln.err(err, {tried = "thing_that_could_fail()"})
end
-- time="2019-12-25T13:27:32" err="vibe check failed" tried=thing_that_could_fail()

And outputting logs as JSON:

local ln = require "ln"

ln.default_logger.formatter = ln.JSONFormatter:new()
ln.log {foo = "bar"}
-- {"foo":"bar","time":"2019-12-25T13:27:32"}

Or creating your own logger instance:

local ln = require "ln"

local lgr = ln.Logger:new()
lgr:log {foo = "bar"}
-- time="2019-12-25T13:27:32" foo=bar