Re: remove logger.info("skipped deployment of: " + beanClass.getName() + " reason: " + e.getMessage());

2013-10-08 Thread Romain Manni-Bucau
set logger level to finer solves it. The point is it logs too much by default in pretty much all libs *Romain Manni-Bucau* *Twitter: @rmannibucau * *Blog: **http://rmannibucau.wordpress.com/* *LinkedIn: **http://fr.linkedin.com/i

Re: remove logger.info("skipped deployment of: " + beanClass.getName() + " reason: " + e.getMessage());

2013-10-08 Thread Mark Struberg
This was intended for detecting beans which did not get picked up because e.g. a Class is missing on the ClassPath (NoClassDefFound & friends). It might get hard to detect such cases. LieGrue, strub - Original Message - > From: Romain Manni-Bucau > To: openwebbeans-dev > Cc: > Sen

[jira] [Commented] (OWB-894) OpenWebBeansJsfPlugin logs "skipped deployment" on all @FacesComponent classes with an UndeclaredThrowableException

2013-10-08 Thread Mark Struberg (JIRA)
[ https://issues.apache.org/jira/browse/OWB-894?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13789066#comment-13789066 ] Mark Struberg commented on OWB-894: --- is there a small sample project on github which I can

remove logger.info("skipped deployment of: " + beanClass.getName() + " reason: " + e.getMessage());

2013-10-08 Thread Romain Manni-Bucau
Hi in org.apache.webbeans.config.BeansDeployer#isValidManagedBean we log in info and finer if a bean is not a managed bean: logger.info("skipped deployment of: " + beanClass.getName() + " reason: " + e.getMessage()); logger.log(Level.FINER, "skipped deployment of: " + beanClass.getName() + " deta