Honeybadger.add_breadcrumb

You're seeing just the function add_breadcrumb, go back to Honeybadger module for more information.
Link to this function

add_breadcrumb(message, opts \\ [])

View Source

Specs

add_breadcrumb(String.t(), Honeybadger.Breadcrumbs.Breadcrumb.opts()) :: :ok

Stores a breadcrumb item.

Appends a breadcrumb to the notice. Use this when you want to add some custom data to your breadcrumb trace in effort to help debugging. If a notice is reported to Honeybadger, all breadcrumbs within the execution path will be appended to the notice. You will be able to view the breadcrumb trace in the Honeybadger interface to see what events led up to the notice.

Breadcrumb with metadata

Honeybadger.add_breadcrumb("email sent", metadata: %{
  user: user.id, message: message
})
=> :ok

Breadcrumb with specified category. This will display a query icon in the interface

Honeybadger.add_breadcrumb("ETS Lookup", category: "query", metadata: %{
  key: key,
  value: value
})
=> :ok