He *is* using log4j. Your suggestion below is a "deprecated" interface.
I suspect that he is not looking in the right place for the debug
messages.
Debug messages only appear in the log/server.log file, not on the
console.
This works for us btw.
On Monday, July 8, 2002, at 11:34 AM, Guy Rouillier wrote:
Use log4j, e.g.,
private final Category log =
Category.getInstance(getClass().getName());
----- Original Message -----
From: "Dimitri PISSARENKO" <dimitri.pissarenko@xxxxxxx>
To: <jboss-user@xxxxxxxxxxxxxxxxxxxxx>
Sent: Sunday, July 07, 2002 6:42 PM
Subject: [JBoss-user] Logging from within EJBs
Hello!
I want some of the events in the life of my EJBs to be logged at debug
level. The usual way to get an instance of Logger
class ProjectBean ...
{
...
private Logger logger = Logger.getLogger(ProjectBean.class);
}
and invokation of
if (logger.isDebugEnabled())
{
logger.debug("...")
}
does not work in my case (although logger.isDebugEnabled() returns
true).
Does someone know, how one can get the reference to the Logger from
wihin an EJB?
Thanks
Dimitri Pissarenko
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
We have stuff for geeks like you.
http://thinkgeek.com/sf
_______________________________________________
JBoss-user mailing list
JBoss-user@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/jboss-user
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
We have stuff for geeks like you.
http://thinkgeek.com/sf
_______________________________________________
JBoss-user mailing list
JBoss-user@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/jboss-user
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
We have stuff for geeks like you.
http://thinkgeek.com/sf
|