In Chapter 6, “Setting up auditing”, the documentation incorrectly states that the default name of the auditing table is “Audit.” Actually, the default table name is “AuditInfo,” as defined in the security.properties file by the following line:
auditDatabaseInsertSql=INSERT INTO AuditInfo(recordID, timeStamp, auditData) VALUES ({1}, {2}, {3})
When you create an auditing table in your database,
you can name it whatever you want, but the name must match the name
in the auditDatabaseInsertSql=INSERT
INTO
statement in security.properties.