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.

Is there anyway to tell ruby to log the url it got as a request in the log?

I am seeing some crashing in my app and can't pin down what url that is doing it.

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, it's absolutely possible, but how you implement it will depend on your app. If you're using a framework like Rails or Rack use their built-in logging classes (Thin hooks into Rack's logging class automatically). If it's a vanilla Ruby script then you can include Thin::Logging in your class, which will give you log, trace, debug, and log_error methods.

As for logging the requested URL specifically, that depends entirely on your implementation.

share|improve this answer

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.