Current section
Files
Jump to
Current section
Files
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