Difference between revisions of "Bot Playground/Built-in Functions/console.warn"
From SmartBots Developers Docs
(Created page with "{{DISPLAYTITLE:{{SUBPAGENAME}}}} <onlyinclude>Logs warning data to the log.</onlyinclude> Read more about error logs. <syntaxhighlight lang="javascript"> co...") |
|||
| Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
| − | <onlyinclude>Logs warning data to the log.</onlyinclude> Read more about [[../../Logging| | + | <onlyinclude>Logs warning data to the runtime log.</onlyinclude> Read more about [[../../Logging|runtime logs]]. |
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
Revision as of 12:35, 30 July 2025
Logs warning data to the runtime log. Read more about runtime logs.
console.warn(...arguments);
Reference
This command accepts the following parameters:
| Variable | Required | Description
| |
|---|---|---|---|
| Input: | |||
| ...arguments | yes | any number of arguments to be logged to the log. Objects can be translated to a string using JSON.stringify() | |
| Output: | |||
| result | This function does not return anything | ||