I'm trying to do file output for logging in the export environment and cant seem to get any log output. The io library seems to not work (yes I commented the sanitize line), i cant seem to use env.info(), I also tried this which creates the file, but it never gets any out put.
file = io.open("Export.log", "w")
if file then
file.write("---Log: Start-----", "\n")
file.flush()
file:close()
end
any ideas to get this to work or get env.info to work in an export?