--@module log local log={} local config=require("config") function log.log(str) if config.debug then io.stderr:write(str) end end return log