In the RAD(Rational Application Development) ide run on eclipse I have a web application project. Yes, there are some classes that have a main method with log.error, log.debug, etc. I can run these java classes standalone in the IDE with out running them on a server and the emails get sent out...no problem...Once I run the entire project on a server(WebSphere Application Server) and also have log statements, the emails do not get sent out. I don't understand the differences...There are no errors being outputted to indicate a problem....Howver the difference in the console output is this...
standalone....(email gets sent to me)
DEBUG 2011-03-10 09:11:33,865 LogClass - Debug is enabled
INFO 2011-03-10 09:11:33,880 LogClass - Info is enabled
WARN 2011-03-10 09:11:33,880 LogClass - Warn
ERROR 2011-03-10 09:11:33,880 LogClass - Error
FATAL 2011-03-10 09:11:34,787 LogClass - Fatal
server.....(No emails are sent)
[3/10/11 9:12:05:369 CST] 00000024 SystemOut O DEBUG 2011-03-10 09:12:05,369 LogTester - Debug is enabled
[3/10/11 9:12:05:369 CST] 00000024 SystemOut O INFO 2011-03-10 09:12:05,369 LogTester - Info is enabled
[3/10/11 9:12:05:369 CST] 00000024 SystemOut O WARN 2011-03-10 09:12:05,369 LogTester - Warn
[3/10/11 9:12:05:369 CST] 00000024 SystemOut O ERROR 2011-03-10 09:12:05,369 LogTester - Error
[3/10/11 9:12:05:369 CST] 00000024 SystemOut O FATAL 2011-03-10 09:12:05,369 LogTester - Fatal