Current section
Files
Jump to
Current section
Files
src/the_stars.erl
-module(the_stars).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([main/0]).
-spec main() -> binary().
main() ->
Value = <<"Hello from the_stars!"/utf8>>,
Logger = log:new_logger(),
log:debug(Logger, Value),
log:info(Logger, Value),
log:warn(Logger, Value),
log:error(Logger, Value),
log:fatal(Logger, Value).