UI Operations Logging

Web UI logs its operations and activities to a browser console. This logging system is very similar to server-side logging.

To access Web UI logs, open browser dev tools and switch to console.

UI logging levels match server-side logging levels.

UI-level logging categories can be listed by calling showLoggers() method of LoggersManager JavaScript object accessible from global scope.

Most of the categories match corresponding server-side logging categories. However, there are some categories specific to the Web UI:

Category Name

Description

ag.dashboard.reducers

Messages related to dashboard layout editing.

ag.network.requests

Messages related to various Iotellect Server communications.

ag.redux.actions

Messages related to UI application state changes (e.g. component events and property changes).

By default, all loggers are configured to log messages at Info level or higher. To change logging level, call setLoggersLevel(string level, string logger) method of LoggersManager JavaScript object.

Example: LoggersManager.setLoggersLevel("debug", "ag.context") command switches logging in ag.context category to debug level.

Was this page helpful?