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 17:01:19 +10:00
parent 7687ceef66
commit c25cd4e78d
2 changed files with 7 additions and 1 deletions
+6
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