NOTE: Since both Erlang and Elixir provide pluggable logging facilities out
of the box for a while now, the benefit of using hut
has been
reduced. One may still use it, however it doesn't provide much benefit nowadays.
hut
is a minimal library for Erlang libraries and small applications to
stay agnostic to the logging framework in use. Its purpose is to allow the
developers of umbrella applications to use their logging framework of choice
and ensure that dependency stick to that choice as well.
The idea for hut
came out of
a discussion about
exometer_core's logging facilities.
- Include
hut
as a dependency in your toolchain. - Include
hut
in your.erl
files via-include_lib(hut/include/hut.hrl)
- Log with
?log(Level, Msg)
to log the given message?log(Level, Fmt, Args)
to format the given message with the arguments usingio_lib:format/2
?log(Level, Fmt, Args, Opts)
to pass additional options to the logging backend in use?slog(Level, #{key1 => Value1, ...})
structured log message?slog(Level, Data :: map(), Metadata :: map())
structured log message with custom metadata?set_process_metadata(Metadata :: map())
add custom metadata to the process
- Compile and pass the appropriate macro to the compiler to enable a certain backend as described next.
- Ensure that the application
hut
is started as part of your system.
- SASL
error_logger
as the default (on OTP20 and older) logger
as the default on OTP21+io:format/2
via-DHUT_IOFORMAT
- no-op logging via
-DHUT_NOOP
- Lager via
-DHUT_LAGER
(you may optionally specify a different log message sink by additionally defining-DHUT_LAGER_SINK mysinkname
; the default message sink islager
) - custom callback module via
-DHUT_CUSTOM -DHUT_CUSTOM_CB mycbmod
(the module must provide the functionlog(Level, Fmt, Args, Opts)
hut
provides a simple mechanisms to drop log messages depending on the enabled
log level. The functionality is similar to how Lager works with log levels.
The current log level (default is info
) can be set through the application variable level
:
erl -hut level debug
All log messages with levels below the current log level will be dropped.
The gating mechanism can be disabled through the application variable use_log_level_gate
:
erl -hut use_log_level_gate false
NOTE: The gating mechanism is not supported for the Lager backend, since Lager itself provides a similar functionality which you should rely on when using Lager.
Refer to the respective Makefile
in each example for details.
examples/basic
shows the use of all backends from an Erlang libraryexamples/elixir
shows how to use ahut
-enabled Erlang library within an Elixir applicationexamples/rebar3
shows how to usehut
in arebar3
project