Packages

The standard library for logi_ex

Current section

Files

Jump to
logi_stdlib_ex lib logi_std layout single_line.ex
Raw

lib/logi_std/layout/single_line.ex

defmodule LogiStd.Layout.SingleLine do
@moduledoc """
A `Logi.Layout` implementation which removes newline characters from output messages.
"""
@doc "Creates a new layout instance."
@spec new(Logi.Layout.layout) :: Logi.Layout.layout
def new(layout) do
:logi_layout_single_line.new layout
end
end