You are running a webapp, right? "/src" is not a standard directory that gets put
on the classpath. I'm asking you if it's in the runtime classpath, not in your
compile-time source path.
Jake
msg2ajay wrote:
hi,
I have placed in the /src folder.
[CODE]
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L -
%m%n
log4j.rootLogger=debug, stdout
[/CODE]
thanQ
Ajay
Matthew Kemp-2 wrote:
Can you also post your log4j properties file? My guess is that the log
levels are not correct or that appenders are not attached appropriately.
Matt
On Nov 14, 2007 2:22 AM, msg2ajay <[EMAIL PROTECTED]> wrote:
hi friends,
I am new to log4j . i have written
[CODE]
- log4j.properties (file in /src/log4j.properties)
- my .java class is as below
import org.apache.commons.logging.*;
public class RegisterAction extends Action{
private static Log log =
LogFactory.getLog("login.action.RegisterAction");
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse respoonse)
{
RegisterForm RForm = (RegisterForm)form;
log.debug("THIS IS A LOG EXAMPLE #############>>>>>>");
.
.
.
.
.
.
}
[/CODE]
- my doubt is do i need to configure in sturts-config.xml or web.xml
about
the log4j.properties.
- I have am not getting the log.debug(''...."); statement in my
console....
can any bady show me some way.
Ajay
--
View this message in context:
http://www.nabble.com/where-can-i-see-the-log.Debug%28%22somemessage%22%29------message-tf4803416.html#a13742321
Sent from the Log4j - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]