Sentry is great tool for monitoring Rails applications, we use it on Nettigo. But… when Raven, Sentry Ruby client starts it writes something like Raven ready to catch errors. It is a bit annoying. Every log file is full of this crap. There is no documentation of it, but if You look inside code, You will find report_status
function, responsible for this mess. First line is:
return if configuration.silence_ready
Hallelujah! Just add to Your Raven.configure do |config|
block this line:
config.silence_ready = true
To silence that message.
BTW – long time no word from me. Maybe, just maybe it will be more posts in future.
Leave a Reply