mod-sneeker/functions.lua

15 lines
351 B
Lua
Raw Normal View History

2017-05-28 04:54:26 +02:00
-- Functions for sneeker mod
-- Displays a message in log output
2017-05-28 04:54:26 +02:00
function sneeker.log(message)
minetest.log('action', '[' .. sneeker.modname .. '] ' .. message)
end
2017-05-28 04:54:26 +02:00
-- Displays a message in log output only if 'sneeker.debug' is set to 'true'
function sneeker.log_debug(message)
if sneeker.debug then
sneeker.log('[DEBUG] ' .. message)
end
end