[Rails] Re: logger.info request.headers in production does nothing?

2008-09-09 Thread comopasta Gr
Thanks Matt! Yeah I use firebug. That is great to see the requests I send from the browser for example. In my case the request is coming from a mobile device and I'd like to see how the request received by the server looks. Regards -- Posted via http://www.ruby-forum.com/. --~--~-~--

[Rails] Re: logger.info request.headers in production does nothing?

2008-09-09 Thread Matt Harrison
comopasta Gr wrote: > Hi, > > I need to inspect the request header I'm getting from a client in > production mode. > > Any hints anyone? > > Thanks. I like to use the firebug addon for firefox, it really helps with web design and as a bonus you can track requests, responses and see everything

[Rails] Re: logger.info request.headers in production does nothing?

2008-09-09 Thread comopasta Gr
Hi, I need to inspect the request header I'm getting from a client in production mode. Any hints anyone? Thanks. -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on

[Rails] Re: logger.info request.headers in production does nothing?

2008-09-09 Thread comopasta Gr
Thanks Thorsten > or use logger.error instead of logger.info I did try that one also with the same result... Regards -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby

[Rails] Re: logger.info request.headers in production does nothing?

2008-09-09 Thread Thorsten Müller
there is a line config.log_level = :error or something the like in development.rb you can change or remove that to get the right log level or use logger.error instead of logger.info --~--~-~--~~~---~--~~ You received this message because you are subscribed to th