Example usage for org.springframework.beans.factory.support AbstractAutowireCapableBeanFactory getLogger

List of usage examples for org.springframework.beans.factory.support AbstractAutowireCapableBeanFactory getLogger

Introduction

In this page you can find the example usage for org.springframework.beans.factory.support AbstractAutowireCapableBeanFactory getLogger.

Prototype

Log getLogger() 

Source Link

Document

Expose the logger to collaborating delegates.

Usage

From source file:org.springframework.beans.factory.support.ConstructorResolver.java

/**
 * Create a new ConstructorResolver for the given factory and instantiation strategy.
 * @param beanFactory the BeanFactory to work with
 *///  www  . j  ava  2s .co m
public ConstructorResolver(AbstractAutowireCapableBeanFactory beanFactory) {
    this.beanFactory = beanFactory;
    this.logger = beanFactory.getLogger();
}