Mobile Web Wearable Web

JavaScript Log Console View

The JavaScript Log Console view provides a functionality to view Web application JavaScript logs. The following table shows the methods supported for logging to the JavaScript log.

Table: Supported JavaScript log methods
Method Example
console.log console.log("console.log");
console.info console.info("console.info");
console.warn console.warn("console.warn");
console.error console.error("console.error");
console.debug console.debug("console.debug");

The JavaScript log methods are shown in the IDE with colors.

Figure: JavaScript log method colors

JavaScript log method colors

The JavaScript Log Console view is automatically opened when a Web application is launched.

Note
If no target is connected, a notification dialog appears at the right-bottom section of the IDE and the JavaScript Log Console view is not launched.
Go to top