Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am logging some errors by doing this in my Rails app:

logger.error "MY ERROR STRING"

How can I look in heroku logs to find that line?

I know how to do heroku logs --tail and heroku logs -n 500 ,but how can I find a specific string in the logs?

share|improve this question

2 Answers

up vote 2 down vote accepted

Using heroku logs -t | grep "term" is great for filtering current log events. However, Heroku retains a max of 1500 lines of log output, so even if you do heroku logs -n 1500 -t you won't see log events that occurred prior to that log window.

The better approach is to use a logging add-on like Papertrail that retains your logs for a greater period of time and makes your full log history searchable.

Of course, it also possible that the log event you think is triggering in your code isn't.

share|improve this answer
+1 for Papertrail. – Benjamin Tan Jul 20 '12 at 2:35

Try putting | grep "search term" after your heroku logs -n 500 statement

so something like: heroku logs -n 500 | grep "MY ERROR STRING"

share|improve this answer
I still don't see it. Is it any configuration needed to be able to see the logs that are filled in logger.error in Heroku? – Hommer Smith Jul 19 '12 at 17:53
This only searches your most immediate logs. If this log output didn't happen recently you won't see it with this approach. – Ryan Daigle Jul 19 '12 at 18:25
Well in his example he is only looking for the last 500 entries or tailing, so I think he's looking for recent logs – Luke Jul 19 '12 at 18:27
I put 500 as an example...I'm looking for older logs... – Hommer Smith Jul 19 '12 at 21:16

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.