Current section
Files
Jump to
Current section
Files
lib/code_name_raven/runtime/null_adapter.ex
defmodule CodeNameRaven.Runtime.NullAdapter do
@moduledoc false
# Implements the fallback adapter behaviour returning an empty list.
def recent_samples(_monitor_id, _opts), do: []
def instance_id, do: "null-instance"
end