Skip to content

Instantly share code, notes, and snippets.

@codeblooded
Created January 2, 2013 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeblooded/4436519 to your computer and use it in GitHub Desktop.
Save codeblooded/4436519 to your computer and use it in GitHub Desktop.
Log from Rails Issue #8684
=> Booting WEBrick
=> Rails 4.0.0.beta application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2013-01-02 11:54:20] INFO WEBrick 1.3.1
[2013-01-02 11:54:20] INFO ruby 1.9.3 (2012-12-25) [x86_64-darwin11.4.0]
[2013-01-02 11:54:20] INFO WEBrick::HTTPServer#start: pid=31912 port=3000
Started GET "/" for 127.0.0.1 at 2013-01-02 11:55:07 -0600
Processing by Rails::WelcomeController#index as HTML
Rendered /Users/benvreed/.rbenv/versions/1.9.3-p362/lib/ruby/gems/1.9.1/bundler/gems/rails-bb38df89bfbf/railties/lib/rails/templates/rails/welcome/index.html.erb (3.6ms)
Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms)
[2013-01-02 11:55:07] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/rails.png" for 127.0.0.1 at 2013-01-02 11:55:07 -0600
[2013-01-02 11:55:07] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
[2013-01-02 11:55:07] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/articles" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
Processing by ArticlesController#index as HTML
Article Load (0.2ms) SELECT "articles".* FROM "articles"
Rendered articles/index.html.erb within layouts/application (51.8ms)
Completed 200 OK in 136ms (Views: 132.4ms | ActiveRecord: 0.6ms)
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
Started GET "/assets/articles.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/articles.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:11 -0600
[2013-01-02 11:55:11] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/articles/new" for 127.0.0.1 at 2013-01-02 11:55:13 -0600
Processing by ArticlesController#new as HTML
Rendered articles/_form.html.erb (25.4ms)
Rendered articles/new.html.erb within layouts/application (90.0ms)
Completed 200 OK in 98ms (Views: 96.6ms | ActiveRecord: 0.0ms)
[2013-01-02 11:55:13] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started POST "/articles" for 127.0.0.1 at 2013-01-02 11:55:21 -0600
Processing by ArticlesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Od2pR9yXvyy+FKP5ew2Ljl4mroSSwCylWjqdOaX0gDA=", "article"=>{"title"=>"my article", "body"=>"here\r\n"}, "commit"=>"Create Article"}
(0.1ms) begin transaction
SQL (8.0ms) INSERT INTO "articles" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "here\r\n"], ["created_at", Wed, 02 Jan 2013 17:55:21 UTC +00:00], ["title", "my article"], ["updated_at", Wed, 02 Jan 2013 17:55:21 UTC +00:00]]
(2.4ms) commit transaction
Redirected by /Users/benvreed/.rbenv/versions/1.9.3-p362/lib/ruby/1.9.1/logger.rb:371:in `add'
Redirected to http://localhost:3000/articles/3
Completed 302 Found in 16ms (ActiveRecord: 10.5ms)
Started GET "/articles/3" for 127.0.0.1 at 2013-01-02 11:55:21 -0600
Processing by ArticlesController#show as HTML
Parameters: {"id"=>"3"}
Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "3"]]
Rendered articles/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 11ms (Views: 7.7ms | ActiveRecord: 0.3ms)
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:21 -0600
[2013-01-02 11:55:21] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/articles.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:21 -0600
[2013-01-02 11:55:21] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:21 -0600
[2013-01-02 11:55:21] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:21 -0600
[2013-01-02 11:55:22] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:22 -0600
[2013-01-02 11:55:22] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/articles.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:22 -0600
[2013-01-02 11:55:22] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:22 -0600
[2013-01-02 11:55:22] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/articles/3" for 127.0.0.1 at 2013-01-02 11:55:29 -0600
Processing by ArticlesController#show as HTML
Parameters: {"id"=>"3"}
Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT 1 [["id", "3"]]
Rendered articles/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.2ms)
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:29 -0600
[2013-01-02 11:55:29] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/articles.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:29 -0600
[2013-01-02 11:55:29] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:29 -0600
[2013-01-02 11:55:29] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
[2013-01-02 11:55:29] ERROR IOError: stream closed
/Users/benvreed/.rbenv/versions/1.9.3-p362/lib/ruby/1.9.1/webrick/log.rb:58:in `write'
/Users/benvreed/.rbenv/versions/1.9.3-p362/lib/ruby/1.9.1/webrick/log.rb:58:in `<<'
/Users/benvreed/.rbenv/versions/1.9.3-p362/lib/ruby/1.9.1/webrick/log.rb:58:in `log'
/Users/benvreed/.rbenv/versions/1.9.3-p362/lib/ruby/1.9.1/webrick/log.rb:133:in `log'
/Users/benvreed/.rbenv/versions/1.9.3-p362/lib/ruby/1.9.1/webrick/log.rb:73:in `warn'
/Users/benvreed/.rbenv/vers
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:29 -0600
[2013-01-02 11:55:29] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-01-02 11:55:29 -0600
[2013-01-02 11:55:29] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:30 -0600
[2013-01-02 11:55:30] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/articles.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:30 -0600
[2013-01-02 11:55:30] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-02 11:55:30 -0600
[2013-01-02 11:55:30] WARN Could not determine content-length of response body. Set content-length of the response or set Response#chunked = true
^C[2013-01-02 12:01:33] INFO going to shutdown ...
[2013-01-02 12:01:33] INFO WEBrick::HTTPServer#start done.
Exiting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment