JavaScript Logging

In development mode, Web Central client-side UI logs status messages to the Log Console. You can open the Console window using the "Log Console" button that is located on the view toolbar in the top right corner of the screen. This button and the Log Console functionality is not available in production mode.

JSLogging.bmp

Application developers can log their custom messages using the View.log() method.

// specify the message, the category, and the source
View.log('Request approved', 'info', 'ab-my-view.axvw');

// use default category=info and default source=view
View.log('Hello World!');