Skip to content

Latest commit

 

History

History
125 lines (103 loc) · 4.01 KB

README.md

File metadata and controls

125 lines (103 loc) · 4.01 KB

structlog.nvim

test sanitize Documentation

Structured Logging for nvim, using Lua

Why using it

structlog makes logging in Lua less painful and more powerful by adding structure to your log entries.

Instead of writting complex messages, you can start thinking in terms of an event that happens in the context of key/value pairs.
Each log entry is a meaningful dictionary instead of an opaque string!

Thanks to its flexible design, the structure of the final log output is up for you to decide.
Each log entry goes through a processor pipeline that is just a chain of functions that receive a dictionary and return a new dictionary that gets fed into the next function. That allows for simple but powerful data manipulation.
This dictionary is then formatted and sent out to the sink.

For more details, consider reading the documentation.

Usage

Create and Use

local log = require("structlog")

local logger = log.Logger("name", log.level.INFO, {
  log.sinks.Console({
    processors = {
      log.processors.Namer(),
      log.processors.Timestamper("%H:%M:%S"),
    },
    formatter = log.formatters.Format( --
      "%s [%s] %s: %-30s",
      { "timestamp", "level", "logger_name", "msg" }
    ),
  }),
})

logger:info("A log message")
logger:warn("A log message with keyword arguments", { warning = "something happened" })
10:32:40 [INFO] name: A log message
10:32:40 [WARN] name: A log message with keyword arguments     warning="something happened"

Configure and Retrieve

local log = require("structlog")

log.configure({
  name = {
    level = log.level.INFO,
    sinks = {
      log.sinks.Console({
        processors = {
          log.processors.Namer(),
          log.processors.Timestamper("%H:%M:%S"),
        },
        formatter = log.formatters.Format( --
          "%s [%s] %s: %-30s",
          { "timestamp", "level", "logger_name", "msg" },
        ),
      }),
    },
  },
  other_logger = {...},
})

local logger = log.get_logger("name")

Example

local log = require("structlog")

log.configure({
  name = {
    level = log.level.INFO,
    sinks = {
      log.sinks.Console({
        processors = {
          log.processors.Namer(),
          log.processors.StackWriter({ "line", "file" }, { max_parents = 0 }),
          log.processors.Timestamper("%H:%M:%S"),
        },
        formatter = log.formatters.FormatColorizer( --
          "%s [%s] %s: %-30s",
          { "timestamp", "level", "logger_name", "msg" },
          { level = log.formatters.FormatColorizer.color_level() }
        ),
      }),
      log.sinks.File("./test.log", {
        processors = {
          log.processors.Namer(),
          log.processors.StackWriter({ "line", "file" }, { max_parents = 3 }),
          log.processors.Timestamper("%H:%M:%S"),
        },
        formatter = log.formatters.Format( --
          "%s [%s] %s: %-30s",
          { "timestamp", "level", "logger_name", "msg" }
        ),
      }),
    },
  },
  -- other_logger = {...}
})

local logger = log.get_logger("name")
logger:info("A log message")
logger:warn("A log message with keyword arguments", { warning = "something happened" })

image

cat test.log:
10:43:23 [INFO] name: A log message                            file="lua/lsp/null-ls/formatters.lua", line=9
10:43:23 [WARN] name: A log message with keyword arguments     file="lua/lsp/null-ls/formatters.lua", line=10, warning="something happened"