info Synchronous
Write an information message made from one or more values. Values are converted to strings and separated by tabs. Use it to log a status together with several values without manually joining them into one string.
Luau
info(...values: any) -> ()Parameters
| Parameter | Type | Description |
|---|---|---|
...values | any | Values to include in the message, in order. |
Returns
()This function returns no values.
Example
Luau
info("Import complete", "files", 3, "skipped", 1)