Possible Duplicate:
What does “WARN Could not determine content-length of response body.” mean and how to I get rid of it?
I just upgraded to rails 3.2.2, and now on rails s, page load, I get all these errors in the log:
[2012-03-07 19:46:14] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
[2012-03-07 19:46:14] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Per previous SO threads, I tried the following:
/config/application.rb
config.assets.logger = false
config.assets.logger = nil
None of these worked. Any ideas on how to disable this logging for this error? Or to fix the issue :)
Thanks