[seam-dev] Debug page for CDI.
Ales Justin
ales.justin at gmail.com
Wed May 4 15:46:38 EDT 2011
The trace/debug log should help you:
public enum Category
{
BOOTSTRAP("Bootstrap"),
VERSION("Version"),
UTIL("Utilities"),
BEAN("Bean"),
SERVLET("Servlet"),
REFLECTION("Reflection"),
JSF("JSF"),
EVENT("Event"),
CONVERSATION("Conversation"),
CONTEXT("Context"),
EL("El");
private static final String LOG_PREFIX = "org.jboss.weld.";
private final String name;
Category(String name)
{
this.name = createName(name);
}
String getName()
{
return name;
}
private static String createName(String name)
{
return new StringBuilder().append(LOG_PREFIX).append(name).toString();
}
On May 4, 2011, at 4:49 AM, Marek Śmigielski wrote:
> Hi,
>
> Is there any way in Seam 3 or CDI itself to list active beans in all
> scopes for debug purposes? I remember that it was debug page in Seam 2
> with such functionality. If it isn't available, have you any
> suggestions about the way of resolving list of beans either in all
> scopes or in particular scope?
>
> thanks,
> Marek Smigielski
> _______________________________________________
> seam-dev mailing list
> seam-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/seam-dev
More information about the seam-dev
mailing list