Bugsnag
bugsnag-pkg.js
A JavaScript error logging plugin
We use the popular Bugsnag library to log JavaScript errors in our applications. While the Native apps actually subscribe to Bugsnag's service, our web applications use the internal Collect service as the event logging backend.
Including bugsnag-pkg.js from the UI Library will
get you started, but you also need to set the environment and application name
immediately after including the script, like so:
<script src="https://cdn.assets.flexmls.com/flexmls-ui/bugsnag-pkg-3efd84b2.js"></script>
<script>
Bugsnag.appName="flexmls";
Bugsnag.releaseStage="production";
</script>