Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The management audit log records every add, change and delete action made by all users of the Ubisecure SSO Management application.
Example logs are shown:

...

Management Audit Log is disabled by default.
To enable Management Audit Log please edit the configuration file (logback.xml replacing log4j.properties since SSO 9.0)

Configuring via logback.xml file (SSO 9.x and newer)

The logback.xml file is located in ubilogin customization directory (ubilogin-sso/ubilogin/custom/logging/logback.xml) and contains the configuration of all SSO logging. Learn about Logback configuration file syntax.

To

...

enable

...

Management

...

Audit

...

Log

...

please

...

modify

...

level

...

for com.ubisecure.ubilogin.management

...

logger

...

from OFF to INFO:

Code Block
themeDefault
<configuration>
...
    <logger name="com.ubisecure.ubilogin.management" level="INFO">
        <appender-ref ref="MANAGEMENT_AUDIT_FILE"/>
    </logger>
...
</configuration>

...

Configuring via log4j.properties file (SSO 8.x)


The log4j.properties file should opened with a text editor:

...