better regex JS err suppression for Logster

This commit is contained in:
Jeff Atwood 2015-01-16 23:30:06 -08:00
parent 18215f90d0
commit a2e77d8bf4
1 changed files with 13 additions and 7 deletions

View File

@ -7,15 +7,21 @@ if Rails.env.production?
/^ActionController::UnknownFormat/, /^ActionController::UnknownFormat/,
# super annoying empty JS errors in the form of # some old browsers don't define the JavaScript console
# #
# Script error. # 'console' is undefined
# Url: # Url: http://discourse-cdn.codinghorror.com/assets/vendor-0dbc6e71b0ee5428574e3562afe91ef1.js
# Line: 0 # Line: 16
# Column: 0 # Window Location: http://discourse.codinghorror.com/t/the-non-programming-programmer/120/2
# Window Location: http://discourse.codinghorror.com/t/the-god-login/2924/19
# #
/(?m)\AScript error\..*?Line: 0.*?Column: 0/, /^'console' is undefined/,
# ignore any empty JS errors that contain blanks or zeros for line and column fields
#
# Line:
# Column:
#
/(?m).*?Line: (?:\D|0).*?Column: (?:\D|0)/,
# suppress trackback spam bots # suppress trackback spam bots
Logster::IgnorePattern.new("Can't verify CSRF token authenticity", { REQUEST_URI: /\/trackback\/$/ }), Logster::IgnorePattern.new("Can't verify CSRF token authenticity", { REQUEST_URI: /\/trackback\/$/ }),