Packages

Basic logging to simplify our lives.

Current section

Files

Jump to
logs lib logs.ex
Raw

lib/logs.ex

defmodule Logs do
@moduledoc """
Documentation for `Logs`.
"""
@doc """
Hello world.
## Examples
iex> Logs.hello()
:world
"""
def hello do
:world
end
end