Example usage for org.springframework.core.annotation IntrospectionFailureLogger logger

List of usage examples for org.springframework.core.annotation IntrospectionFailureLogger logger

Introduction

In this page you can find the example usage for org.springframework.core.annotation IntrospectionFailureLogger logger.

Prototype

Log logger

To view the source code for org.springframework.core.annotation IntrospectionFailureLogger logger.

Click Source Link

Usage

From source file:org.springframework.core.annotation.IntrospectionFailureLogger.java

private static Log getLogger() {
    Log logger = IntrospectionFailureLogger.logger;
    if (logger == null) {
        logger = LogFactory.getLog(MergedAnnotation.class);
        IntrospectionFailureLogger.logger = logger;
    }//from w  w w  .  ja  va  2s .co m
    return logger;
}