console Log Operations
Overview
Use the console object to print logs to the application console
console.log
Print logs, defaults to INFO level logs
javascript
console.log(...args);| Parameter | Type | Description |
|---|---|---|
| args | Object | Content to output |
console.debug
Print DEBUG logs
javascript
console.debug(...args);| Parameter | Type | Description |
|---|---|---|
| args | Object | Content to output |
console.info
Print INFO logs
javascript
console.info(...args);| Parameter | Type | Description |
|---|---|---|
| args | Object | Content to output |
console.error
Print ERROR logs
javascript
console.error(...args)| Parameter | Type | Description |
|---|---|---|
| args | Object | Content to output |
console.dump
Convert args to JSON and print logs
javascript
console.dump(args)| Parameter | Type | Description |
|---|---|---|
| args | Object | Content to output |

