commenting out logging to see if it's causing the 'read only file system error' on Heroku

This commit is contained in:
Andrew Davidson 2010-09-14 07:54:14 +08:00
parent e745cce01e
commit e52da20f1d

View file

@ -22,9 +22,9 @@ require 'sinatra'
# :raise_errors => true
#)
log = File.new("sinatra.log", "a")
$stdout.reopen(log)
$stderr.reopen(log)
#log = File.new("sinatra.log", "a")
#$stdout.reopen(log)
#$stderr.reopen(log)
require 'main'
run Sinatra::Application