console.log
output and exceptions. These logs are helpful while debugging your Actions, Custom Database scripts, and Custom Social Connections.
Status | Description |
---|---|
Connecting To Log Stream… | Attempting to establish a connection. |
CONNECTED | Successfully connected and receiving logs. |
DISCONNECTED | Not currently connected to the stream. |
Statement | Description | Use Case |
---|---|---|
console.log() | General-purpose logging of information. | Basic informational messages, variable values. |
console.info() | Informational messages highlighting application progress or state. | Reporting successful operations, application milestones. |
console.warn() | Indicates potential issues or unexpected situations that are not critical errors. | Flagging non-critical problems, deprecated features. |
console.error() | Reports errors that have occurred within the application. | Indicating failures, exceptions, and critical issues. |
console.trace() | Displays a stack trace, showing the sequence of function calls leading to the current point. | Debugging complex call flows, understanding the origin of issues. |