Example usage for org.springframework.data.mongodb.core.mapping.event LoggingEventListener LoggingEventListener

List of usage examples for org.springframework.data.mongodb.core.mapping.event LoggingEventListener LoggingEventListener

Introduction

In this page you can find the example usage for org.springframework.data.mongodb.core.mapping.event LoggingEventListener LoggingEventListener.

Prototype

LoggingEventListener

Source Link

Usage

From source file:com.hantsylabs.example.spring.config.MongoConfig.java

@Bean
public LoggingEventListener loggingEventListener() {
    return new LoggingEventListener();
}

From source file:example.ApplicationConfiguration.java

public @Bean LoggingEventListener mongoEventListener() {
    return new LoggingEventListener();
}