From e52da20f1d7fbbca79ac6575cf0646f2abfa30ad Mon Sep 17 00:00:00 2001 From: Andrew Davidson Date: Tue, 14 Sep 2010 07:54:14 +0800 Subject: [PATCH] commenting out logging to see if it's causing the 'read only file system error' on Heroku --- config.ru | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.ru b/config.ru index de3b105..5da3d47 100755 --- a/config.ru +++ b/config.ru @@ -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