I am planning to used audit logging plugin in grails and just wanted to know something basic.
We have to create the Audit domain class and persist data into this table on various events from the domain class manually right?
I mean the plugin does not create the domain and persist I am sure..but would that be the standard way to save the audit data?
Also
if I want entries in audit log like
"user sam logged in from "IP" at "timestamp" and updated user george"
I would need to handle it in the "onLoad"
event in the domain right?
Also how would I track simple event like
"user Rita logged in at "Timestamp""
Thanks