Merge pull request #5254 from kdombeck/fix-logger-class
* pr/5254: Fix logger classname
This commit is contained in:
commit
9bf95c4215
|
@ -27,8 +27,7 @@ import org.springframework.stereotype.Component;
|
||||||
@Component
|
@Component
|
||||||
public class CacheManagerCheck implements CommandLineRunner {
|
public class CacheManagerCheck implements CommandLineRunner {
|
||||||
|
|
||||||
private static final Logger logger = LoggerFactory
|
private static final Logger logger = LoggerFactory.getLogger(CacheManagerCheck.class);
|
||||||
.getLogger(SampleCacheApplication.class);
|
|
||||||
|
|
||||||
private final CacheManager cacheManager;
|
private final CacheManager cacheManager;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue