View Source Appsignal.Logger (AppSignal v2.10.1)

Link to this section Summary

Link to this section Types

@type format() :: :json | :logfmt | :plaintext
@type log_level() ::
  :debug | :info | :notice | :warning | :error | :critical | :alert | :emergency

Link to this section Functions

Link to this function

alert(group, message, metadata_or_format \\ %{})

View Source
@spec alert(String.t(), String.t(), %{} | format()) :: :ok
Link to this function

critical(group, message, metadata_or_format \\ %{})

View Source
@spec critical(String.t(), String.t(), %{} | format()) :: :ok
Link to this function

debug(group, message, metadata_or_format \\ %{})

View Source
@spec debug(String.t(), String.t(), %{} | format()) :: :ok
Link to this function

emergency(group, message, metadata_or_format \\ %{})

View Source
@spec emergency(String.t(), String.t(), %{} | format()) :: :ok
Link to this function

error(group, message, metadata_or_format \\ %{})

View Source
@spec error(String.t(), String.t(), %{} | format()) :: :ok
Link to this function

info(group, message, metadata_or_format \\ %{})

View Source
@spec info(String.t(), String.t(), %{} | format()) :: :ok
Link to this function

log(log_level, group, message, metadata, format \\ :plaintext)

View Source
@spec log(log_level(), String.t(), String.t(), %{}, format()) :: :ok
Link to this function

notice(group, message, metadata_or_format \\ %{})

View Source
@spec notice(String.t(), String.t(), %{} | format()) :: :ok
Link to this function

warning(group, message, metadata_or_format \\ %{})

View Source
@spec warning(String.t(), String.t(), %{} | format()) :: :ok