MetaLogger.debug
You're seeing just the function
debug
, go back to MetaLogger module for more information.
Logs a debug message keeping logger metadata from caller processes.
Returns :ok
or an {:error, reason}
tuple.
Examples
MetaLogger.debug("hello?")
MetaLogger.debug(fn -> "dynamically calculated debug" end)
MetaLogger.debug(fn -> {"dynamically calculated debug", [additional: :metadata]} end)