Example usage for org.springframework.boot.actuate.audit.listener AuditApplicationEvent getAuditEvent

List of usage examples for org.springframework.boot.actuate.audit.listener AuditApplicationEvent getAuditEvent

Introduction

In this page you can find the example usage for org.springframework.boot.actuate.audit.listener AuditApplicationEvent getAuditEvent.

Prototype

public AuditEvent getAuditEvent() 

Source Link

Document

Get the audit event.

Usage

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());
}