unicorn Ruby/Rack server user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
* Two log entries for every request
@ 2012-01-14 17:43 Rob Sutherland
  2012-01-14 21:03 ` Eric Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Sutherland @ 2012-01-14 17:43 UTC (permalink / raw)
  To: mongrel-unicorn

These are lines from a local dev log. Notice the two identical (except for time taken) entries for the requests. Every request has two entries with the 2nd entry taking longer. This is a dev environment so the .css is referenced. On the server this same app is doing the same thing.

Any ideas? Is it bug in my code? 

I, [2012-01-14T10:54:09.089535 #34573] INFO -- : listening on addr=0.0.0.0:8080 fd=3
I, [2012-01-14T10:54:09.090163 #34573] INFO -- : worker=0 spawning...
I, [2012-01-14T10:54:09.092941 #34573] INFO -- : master process ready
I, [2012-01-14T10:54:09.095054 #34597] INFO -- : worker=0 spawned pid=34597
I, [2012-01-14T10:54:09.095875 #34597] INFO -- : Refreshing Gem list
I, [2012-01-14T10:54:19.744259 #34597] INFO -- : worker=0 ready
127.0.0.1 - - [14/Jan/2012 10:54:26] "GET /page/url HTTP/1.1" 200 29950 0.3179
127.0.0.1 - - [14/Jan/2012 10:54:26] "GET /page/url HTTP/1.1" 200 29950 0.5209
127.0.0.1 - - [14/Jan/2012 10:54:26] "GET /ui/base.css HTTP/1.1" 200 33178 0.0670
127.0.0.1 - - [14/Jan/2012 10:54:26] "GET /ui/base.css HTTP/1.1" 200 33178 0.0716





_______________________________________________
Unicorn mailing list - mongrel-unicorn@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Two log entries for every request
  2012-01-14 17:43 Two log entries for every request Rob Sutherland
@ 2012-01-14 21:03 ` Eric Wong
  2012-01-14 22:40   ` Rob Sutherland
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Wong @ 2012-01-14 21:03 UTC (permalink / raw)
  To: unicorn list

Rob Sutherland <rob@roberocity.com> wrote:
> These are lines from a local dev log. Notice the two identical (except
> for time taken) entries for the requests. Every request has two
> entries with the 2nd entry taking longer. This is a dev environment so
> the .css is referenced. On the server this same app is doing the same
> thing.
> 
> Any ideas? Is it bug in my code? 

It looks like you're redundantly loading Rack::CommonLogger

Rack adds Rack::CommonLogger to the middleware stack in both
"development" and "deployment" envirnoments.  The longer time is
probably from Rack::Lint, which also gets added to the "development"
environment.

You can also specify "RACK_ENV=none" to have Rack not load any
middleware by default, giving you (or at least your higher-level
framework) full control over what middleware you load.
_______________________________________________
Unicorn mailing list - mongrel-unicorn@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Two log entries for every request
  2012-01-14 21:03 ` Eric Wong
@ 2012-01-14 22:40   ` Rob Sutherland
  0 siblings, 0 replies; 3+ messages in thread
From: Rob Sutherland @ 2012-01-14 22:40 UTC (permalink / raw)
  To: unicorn list

Eric Wong. That was exactly the problem. 

The app is a Sinatra app and Sinatra and rack were both writing to the log.

Rob 

-- 
Rob Sutherland


On Saturday, January 14, 2012 at 3:03 PM, Eric Wong wrote:

> Rob Sutherland <rob@roberocity.com (mailto:rob@roberocity.com)> wrote:
> > These are lines from a local dev log. Notice the two identical (except
> > for time taken) entries for the requests. Every request has two
> > entries with the 2nd entry taking longer. This is a dev environment so
> > the .css is referenced. On the server this same app is doing the same
> > thing.
> > 
> > Any ideas? Is it bug in my code? 
> 
> It looks like you're redundantly loading Rack::CommonLogger
> 
> Rack adds Rack::CommonLogger to the middleware stack in both
> "development" and "deployment" envirnoments. The longer time is
> probably from Rack::Lint, which also gets added to the "development"
> environment.
> 
> You can also specify "RACK_ENV=none" to have Rack not load any
> middleware by default, giving you (or at least your higher-level
> framework) full control over what middleware you load.
> _______________________________________________
> Unicorn mailing list - mongrel-unicorn@rubyforge.org (mailto:mongrel-unicorn@rubyforge.org)
> http://rubyforge.org/mailman/listinfo/mongrel-unicorn
> Do not quote signatures (like this one) or top post when replying



_______________________________________________
Unicorn mailing list - mongrel-unicorn@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-14 23:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-14 17:43 Two log entries for every request Rob Sutherland
2012-01-14 21:03 ` Eric Wong
2012-01-14 22:40   ` Rob Sutherland

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/unicorn.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).