rsanchez
2015-07-17 de20ad70c0afaf6e0560bc8b22b5fd4d4a953271
securis/src/main/java/net/curisit/securis/ioc/RequestsInterceptor.java
....@@ -62,7 +62,7 @@
6262 @Override
6363 public void filter(ContainerRequestContext containerRequestContext) throws IOException {
6464 EntityManager em = emProvider.getEntityManager();
65
- LOG.info("GETTING EM: {}", em);
65
+ LOG.debug("GETTING EM: {}", em);
6666
6767 ResteasyProviderFactory.pushContext(EntityManager.class, em);
6868
....@@ -177,7 +177,7 @@
177177 }
178178 } finally {
179179 if (em.isOpen()) {
180
- LOG.info("CLOSING EM: {}, trans: {}", em, em.isJoinedToTransaction());
180
+ LOG.debug("CLOSING EM: {}, trans: {}", em, em.isJoinedToTransaction());
181181 try {
182182 em.close();
183183 } catch (Exception ex) {