log.lua@7667b101cb1e
log.lua
Sat, 01 Nov 2014 23:34:21 +0000
- author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Sat, 01 Nov 2014 23:34:21 +0000
- changeset 5
- 7667b101cb1e
- parent 3
-
b2df1b3f2c83
- child 7
-
038275cd92ed
- permissions
- -rwxr-xr-x
Lua 5.2 compatibility hack
module("log", package.seeall)
require("config")
function log(str)
if config.debug then
io.stderr:write(str)
end
end