Skip to content

Commit

Permalink
Merge pull request #35 from lthuangiang/master
Browse files Browse the repository at this point in the history
change out.println to use logger.info instead
  • Loading branch information
treeder committed Oct 27, 2014
2 parents 94af6be + 436ce88 commit 52c3b71
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -378,7 +378,7 @@ private void initEntity(String entity) {
}

private void initSecondLevelCache() {
System.out.println("Initing second level cache: " + cacheFactoryClassname);
logger.info("Initing second level cache: " + cacheFactoryClassname);
if (cacheFactoryClassname != null) {
try {
Class<CacheFactory> cacheFactoryClass = (Class<CacheFactory>) Class.forName(cacheFactoryClassname);
Expand Down

0 comments on commit 52c3b71

Please sign in to comment.