Skip to content

Commit 87bfb90

Browse files
committed
remove log
1 parent 65823e5 commit 87bfb90

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/edu/harvard/iq/dataverse/util/cache/CacheFactoryBean.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,12 @@ public class CacheFactoryBean implements java.io.Serializable {
2929

3030
@PostConstruct
3131
public void init() {
32-
logger.severe(">>>> CacheFactoryBean init ");
3332
rateLimitCache = manager.getCache(RATE_LIMIT_CACHE);
3433
if (rateLimitCache == null) {
3534
CompleteConfiguration<String, String> config =
3635
new MutableConfiguration<String, String>()
3736
.setTypes( String.class, String.class );
3837
rateLimitCache = manager.createCache(RATE_LIMIT_CACHE, config);
39-
logger.severe(">>>> rateLimitCache.getClass() " + rateLimitCache.getClass().getName());
4038
}
4139
}
4240

0 commit comments

Comments
 (0)