System.out.prinln in a bean

2003-01-31 Thread Jeff Ousley
Hello! If I use System.out.println in a bean, where does the output go? Can I control where it goes? thanks! -jeff __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com --

RE: System.out.prinln in a bean

2003-01-31 Thread Filip Hanik
I believe it goes to catalina.out under /logs/ if you want to control where it goes, use a logging library, like log4j -Original Message- From: Jeff Ousley [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 9:01 AM To: [EMAIL PROTECTED] Subject: System.out.prinln in a bean Hello

Re: System.out.prinln in a bean

2003-01-31 Thread Wilson Snook
For your interest, try using out.println instead. Wilson - Original Message - From: "Jeff Ousley" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 31, 2003 5:00 PM Subject: System.out.prinln in a bean > Hello! > > If I use System.ou

Re: System.out.prinln in a bean

2003-02-01 Thread Bill Barker
OTECTED]">news:[EMAIL PROTECTED]... I believe it goes to catalina.out under /logs/ if you want to control where it goes, use a logging library, like log4j -Original Message- From: Jeff Ousley [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 9:01 AM To: [EMAIL PROTECTED] Subject

Re: System.out.prinln in a bean

2003-02-01 Thread Craig R. McClanahan
On Sat, 1 Feb 2003, Bill Barker wrote: > Filip is correct. I'm only replying to say that using System.out is evil. > Save yourself a lot of headaches down the road, and use a real logging > system like log4j/JDK1.4-logging/commons-logging. Just my $0.02. I totally agree with Bill on this reco