Print multiple values as string (except functions and binaries) for debugging. Slog takes a list of values or a single value that is printed as string for debugging. Any value (string, atom, map, list, struct, keyword list ...) except functions can be printed as string with slog.
Slog takes a list of values or a single value that is printed as string for debugging. It takes optional keyword list as second argument
iex> Slog.log ["value is ", {:x, :x, :x}, [key: "value"], {:ok, "Hello Universe!"}]
"value is {:x, :x, :x} [{:key, value}] {:ok, Hello Universe!}"
# using configuration options
iex> Slog.log ["hello", "universe"], stdout: false, delimiter: "---"
"hello---universe"
iex> Slog.log ["value is ", {:x, :x, :x}, [key: "value"], {:ok, "Hello Universe!"}, %User{age: 29, name: "Arun"}]
"value is {:x, :x, :x} [{:key, value}] {:ok, Hello Universe!} %User{age: 29, name: Arun}"
# can take an optional delimiter to be printed in between values
iex> Slog.log ["value is ", {:x, :x, :x}, [key: "value"], {:ok, "Hello Universe!"}], delimiter: " --> "
"value is --> {:x, :x, :x} --> [{:key, value}] --> {:ok, Hello Universe!}"
iex> Slog.log {:hello, "Universe!"}
"{:hello, Universe!}"
iex> Slog.log %{name: "Arun", age: 29}
"%{age: 29, name: Arun}"
iex> Slog.log %{manager: %User{name: "Leonardo", age: 69}}
"%{manager: %User{age: 69, name: Leonardo}}"
Takes a keyword list as second parameter for options. Right now, only configurable option is :delimiter
which takes a string and prints it between each value of the list. Usage is Slog.log [{:hello}, {:universe}], delimiter: " --> "
option | type | default | comments |
---|---|---|---|
delimiter | string | " " (single space) | Default delimiter is single space |
stdout | boolean | true | By default Slog.log prints to stdout using IO.puts. Try Slog.log ["your_log_value"] stdout: false to turn off default logging to stdout |
Slog can be installed
by adding slog
to your list of dependencies in mix.exs
:
def deps do
[
{:slog, "~> 0.1.0", only: [:dev, :test]}
]
end
Slog
is an experimental module that helps printing multiple values together instead of using something like IO.inspect multiple times. For now it is recommended to use only in :dev, :test
environments. Feedbacks and contributions appreciated.
MIT
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/slog.