Merge pull request #5254 from kdombeck/fix-logger-class

* pr/5254:
  Fix logger classname
This commit is contained in:
Stephane Nicoll 2016-02-26 16:54:12 +01:00
commit 9bf95c4215
1 changed files with 1 additions and 2 deletions

View File

@ -27,8 +27,7 @@ import org.springframework.stereotype.Component;
@Component
public class CacheManagerCheck implements CommandLineRunner {
private static final Logger logger = LoggerFactory
.getLogger(SampleCacheApplication.class);
private static final Logger logger = LoggerFactory.getLogger(CacheManagerCheck.class);
private final CacheManager cacheManager;