Re: mailer taglib authentification

2005-02-01 Thread Hassan Schroeder
Michael Arnold wrote: The hole authentification doesn't work. I have no outgoing mail traffic. I don't know how to find the problem. Can I start in a debug mode? I get no error message. ${oops} That, and looking at your SMTP server's /var/log/maillog should do it. And if *that* do

Re: question about integration with log4j

2005-02-01 Thread luca passani
Do you use some tricks to make the compiler remove the debugging info completelly at build time? for ex, making isBebug() return a constant false value? Luca David McReynolds wrote: > > On the last two struts projects we have adopted the policy of wrapping > our log4j info and debug statement

Re: question about integration with log4j

2005-02-01 Thread David McReynolds
On the last two struts projects we have adopted the policy of wrapping our log4j info and debug statements in an if clause. if(logger.isBebug()) { logger.debug("i am here"); } 1. method call overhead is kept to a minimum. 2. You can use the body to conditionally build a complex logging statemen