Timber v3.0.0-alpha.2 Timber.Contexts.RuntimeContext View Source

The Runtime context tracks information about the current runtime, such as the module, file, function, and line number that called the log line.

Note: This is automatically provided by the default Elixir.Logger. There is no need to add this yourself.

Link to this section Summary

Link to this section Types

Link to this type m() View Source
m() :: %{
  application: String.t(),
  file: String.t(),
  function: String.t(),
  line: String.t(),
  module_name: String.t(),
  vm_pid: String.t()
}
Link to this type t() View Source
t() :: %Timber.Contexts.RuntimeContext{
  application: String.t(),
  file: String.t(),
  function: String.t(),
  line: String.t(),
  module_name: String.t(),
  vm_pid: String.t()
}