log.lua@038275cd92ed
log.lua
Tue, 16 Jan 2018 16:39:48 +0000
- author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Tue, 16 Jan 2018 16:39:48 +0000
- changeset 7
- 038275cd92ed
- parent 3
-
b2df1b3f2c83
- permissions
- -rw-r--r--
Convert module stuff to lua 5.3
--@module log
local log={}
local config=require("config")
function log.log(str)
if config.debug then
io.stderr:write(str)
end
end
return log