Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I properly log something from my own middleware which runs in a context of Rails application? Or, more generally, how do I detect that there's some logging middleware on the stack and use it?

share|improve this question

1 Answer

Try using the rack common logger for loggin http://rack.rubyforge.org/doc/Rack/CommonLogger.html

share|improve this answer
why do I need this if I have a full-fledged Rails app? I could just use Rails.logger (that's what I'm doing now). I'm asking about a proper way to do it in a standalone Rack middleware which obviously shouldn't depend on a specific logging framework – synapse Oct 19 '12 at 18:24
Ohh i misunderstood the question. for a standalone app you will need to use the standard ruby output $stdout . What I would do is , create a log file with a path pointing to the root of your rack app and log the standard output to that file which looks something like this log = File.new("rack.log", "a+") $stdout.reopen(log) $stderr.reopen(log) – Raghu Oct 19 '12 at 18:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.