Hi, I've started to port an web2py app to run on Heroku. Actually it runs OK. My app is just a DB API provider and doesn't need sessions at all. It doesn't need any log files and file-based tickets. Tickets on remote system are useless because no admin interface allowed remotely and remote debugging isn't possible. How to examine remote errors in this case? Heroku writes app stdout and stderr to its own logs but web2py doesn't write any errors to stderr and stdout. Hence I see link to ticket but can't view ticket itself.
*In other words I need totally exclude filesystem write access by the app.* To summarize: 1. *How to disable sessions entirely?* 2. *How to disable logs entirely?* 3. *How to redirect all errors to stderr or stdout instead of tickets?* *Thanks! * --