The Sentinel provisioning system audits every write operation (create, update, and delete) that goes through it.
By default, the audit messages are written to the main REM or Apache Tomcat log.
To write the audit messages out to a separate, CSV-formatted file, add the following settings to the REM or Tomcat log4j2.properties
file.
logger.audit.name=sentinel.audit logger.audit.level=INFO logger.audit.additivity=false logger.audit.appenderRef.audit.ref=AUDIT appender.AUDIT.type = RollingFile appender.AUDIT.name = AUDIT appender.AUDIT.fileName = ${rem.home}/sentinel-audit.log appender.AUDIT.layout.type = PatternLayout appender.AUDIT.layout.Pattern = "%d{yyyy-MM-dd HH:mm:ss,SSS}", "%c{1}", %m%n appender.AUDIT.maxFileSize = 10MB appender.AUDIT.maxBackupIndex=10
If you wish to disable the audit messages completely then add the following settings to the REM or Tomcat log4j.properties
file.
logger.audit.level=NONE