I have a grails project and I'm auditing some domain classes, I want to see the information saved by the audit logging plugin but I can't find where the audit_log is created.
Asked
Active
Viewed 274 times
2 Answers
0
Yes, if you install the audit logging plugin it should add automatically add a audit_log
table to your database if your dbCreate
setting in DataSource.groovy
is one of
create
create-drop
update
I'm assuming you're using Grails 1.X or 2.X?

Dónal
- 185,044
- 174
- 569
- 824
-
I'm using Grails 2.4.3 – RuS1991 Sep 01 '15 at 20:23
-
@RuS1991 then I stand by my answer – Dónal Sep 03 '15 at 08:56
0
If you use the database-migration plugin, you need to perform "grails dbm-gorm-diff" to create a migration patch for the audit log table to be created the next time you start your application.

Bertl
- 605
- 5
- 10