files/en-us/web/api/console/info_static/index.md
{{APIRef("Console API")}} {{AvailableInWorkers}}
The console.info() static method outputs a message to the console at the "info" log level. The message is only displayed to the user if the console is configured to display info output. In most cases, the log level is configured within the console UI. The message may receive special formatting, such as a small "i" icon next to it.
console.info(val1)
console.info(val1, /* …, */ valN)
console.info(msg)
console.info(msg, subst1, /* …, */ substN)
val1 … valN
val1 is a string, which is described subsequently.msg
subst1 through substN in consecutive order up to the number of substitution strings. See Using string substitutions for a description of how substitutions work.subst1 … substN
msg. If there are more substitution values than there are substitution strings, the extra values are themselves written to the console after the detailed assertion message in the same manner as when there's no format string.See Outputting text to the console in the documentation of {{domxref("console")}} for further details.
None ({{jsxref("undefined")}}).
{{Specifications}}
{{Compat}}