Where is the first point in rails code that a request hits?

Hi,

Where is the first point in rails code that a request hits?

(I can then add some logging code there as I want to measure some response times)

Regards

Looks like the call function in dispatcher.rb is the entry point from Rack.

--Matt Jones

thanks