Soportar varios parámetros y devolver el mensaje original

This commit is contained in:
f 2021-09-17 16:07:10 -03:00
parent 79624e10f4
commit 8d2378ff89

View file

@ -6,7 +6,11 @@ window.airbrake = new Notifier({
host: 'https://panel.sutty.nl' host: 'https://panel.sutty.nl'
}) })
console.error = (e) => window.airbrake.notify(e) console.originalError = console.error
console.error = (...e) => {
window.airbrake.notify(e.join(' '))
return console.originalError(...e)
}
import 'core-js/stable' import 'core-js/stable'
import 'regenerator-runtime/runtime' import 'regenerator-runtime/runtime'