meta_logger icon indicating copy to clipboard operation
meta_logger copied to clipboard

A wrapper for Elixir Logger that keeps and returns the logger metadata from the caller processes.

Results 2 meta_logger issues
Sort by recently updated
recently updated
newest added

There is a single fixed log format for the [`Tesla.Middleware.MetaLogger`](https://hexdocs.pm/meta_logger/Tesla.Middleware.MetaLogger.html) (and in fact not well-documented). Request ``` [{tag}] {HTTP method} {URL} {headers} [{tag}] {body} ``` Response: ``` [{tag}] {HTTP status...

enhancement

Commonly a prefix is used in log messages. For example: ```elixir [ "[", inspect(__MODULE__), "] My info message." ] |> Miss.String.build() |> MetaLogger.info() # => [MyModule] My info message. ```...

enhancement