2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

stop logging badrequest, its just bad urls entered

This commit is contained in:
Sam 2015-05-27 13:46:15 +10:00
parent 24102f2636
commit 3f24e18df0

View file

@ -25,7 +25,10 @@ if Rails.env.production?
/^Can't verify CSRF token authenticity$/,
# 404s can be dealt with elsewise
/^ActiveRecord::RecordNotFound /
/^ActiveRecord::RecordNotFound /,
# bad asset requested, no need to log
/^ActionController::BadRequest /
]
end