README.md 814 B

Log

Dump any lua variables in human-readable format and log them.

It uses a fork of inspect.lua, adapted to Minetest (can dump userdata).

Usage

log() accept a table, where keys are names and values are any variables to dump/log. It also accept 2 optional arguments: depth and log level.

Example

minetest.register_on_punchnode(function(_, node)
  log {[node.name] = minetest.registered_nodes[node.name].groups}
end)

This mod was created in Rustroot Forge.

All my mods uses Lunati LSP-API annotations, StyLua and Luacheck.