Logger.info
You're seeing just the macro
info
, go back to Logger module for more information.
Logs a info message.
Returns :ok
.
Examples
Logging a message (string or iodata):
Logger.info("this is a info message")
Report message (maps or keywords):
# as keyword list
Logger.info([something: :reported, this: :info])
# as map
Logger.info(%{something: :reported, this: :info})