Corticon Web Console maintains a log of its activities. The log includes:
  • User actions such as deploying or undeploying Decision Services and creating or modifying Applications and Servers.
  • System events such as deployment failures and lost connections to Servers.

A Web Console Administrator can view the Activity Log as well as configure the duration for which Corticon Web Console maintains log records. To view the Activity Log, click ACTIVITY LOG on the left pane. To configure the duration for which Web Console keeps log records, click Configuration on the Activity Log page and set the number of days for which Web Console maintains log records.

To know more about viewing and filtering the Activity Log, see the topic How to view the Activity Log.

Note: The Web Console Activity Log is different from a Server log, which logs user actions, system events, and other information for a specific instance of Corticon Server based on configurable log levels.

Update Loglevel for Web Console

The Corticon Web Console uses logback for logging. The logback.xml is located in the Progress/Corticon_Server_Work_x.x/etc/ folder..

The log level is set to error by default. To enable info or debug level logging on the Web Console change the level to info or debug.

<logger name="com.progress.corticon.serverconsole"
       level="error" 
       additivity="false">     
    <appender-ref ref="FILE" /> 
</logger>

The Web Console logging supports all the various configurations supported by Logback framework.

You can easily customize the logging to add different appenders by updating the logback.xml file. Refer to the Logback documentation for more details.