Packages

GenRetry provides utilities for retrying Elixir functions, with configurable delay and backoff characteristics.

Current section

Files

Jump to
gen_retry lib test_logger.ex
Raw

lib/test_logger.ex

defmodule GenRetry.TestLogger do
@behaviour GenRetry.Logger
@impl true
def log(_message) do
"do nothing"
end
end