A new logster, that gets rid of a pile of 404s being logged as fatal errors.

This commit is contained in:
Sam 2014-05-07 16:55:24 +10:00
parent 7687ceef66
commit c25cd4e78d
2 changed files with 7 additions and 1 deletions

View File

@ -151,7 +151,7 @@ GEM
thor (~> 0.15)
libv8 (3.16.14.3)
listen (0.7.3)
logster (0.0.3)
logster (0.0.4)
lru_redux (0.8.1)
mail (2.5.4)
mime-types (~> 1.16)

View File

@ -0,0 +1,6 @@
if Rails.env.production?
# honestly, Rails should not be logging this, its real noisy
Logster.store.ignore = [
/^ActionController::RoutingError \(No route matches/
]
end