List of usage examples for org.springframework.boot.actuate.audit.listener AuditApplicationEvent getAuditEvent
public AuditEvent getAuditEvent()
From source file:org.springframework.boot.actuate.audit.listener.AuditListener.java
@Override public void onApplicationEvent(AuditApplicationEvent event) { if (logger.isDebugEnabled()) { logger.debug(event.getAuditEvent()); }// w w w.j a v a 2s.c o m this.auditEventRepository.add(event.getAuditEvent()); }