Packages

The standard library for logi_ex

Current section

Files

Jump to
logi_stdlib_ex lib logi_std file rotator noop.ex
Raw

lib/logi_std/file/rotator/noop.ex

defmodule LogiStd.File.Rotator.Noop do
@moduledoc """
A noop `LogiStd.File.Rotator` implementation.
"""
@doc "Creates a new rotator instance."
@spec new :: LogiStd.File.Rotator.rotator
def new do
:logi_sink_file_rotator_noop.new
end
end