Logger.info

You're seeing just the macro info, go back to Logger module for more information.
Link to this macro

info(message_or_fun, metadata \\ [])

View Source (macro) (since 1.11.0)

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})