OnBreadcrumbCallback

fun interface OnBreadcrumbCallback

Add a "on breadcrumb" callback, to execute code before every breadcrumb captured by Bugsnag.

You can use this to modify breadcrumbs before they are stored by Bugsnag. You can also return false from any callback to ignore a breadcrumb.

For example:

Bugsnag.onBreadcrumb(new OnBreadcrumbCallback() { public boolean onBreadcrumb(Breadcrumb breadcrumb) { return false; // ignore the breadcrumb } })

Functions

Link copied to clipboard
abstract fun onBreadcrumb(breadcrumb: Breadcrumb): Boolean

Runs the "on breadcrumb" callback. If the callback returns false any further OnBreadcrumbCallback callbacks will not be called and the breadcrumb will not be captured by Bugsnag.