RE: To Screen *NOT* to Console

2005-12-15 Thread Philip Denno
more than happy to look at including it in the distribution. Cheers, Philip. -Original Message- From: Slaughter, Stan [mailto:[EMAIL PROTECTED] Sent: December 14, 2005 8:04 AM To: 'Log4J Users List' Subject: RE: To Screen *NOT* to Console "...In your case you are assu

RE: To Screen *NOT* to Console

2005-12-14 Thread Slaughter, Stan
they resolved the question or not though. Application Architect [EMAIL PROTECTED] Ext 6418 -Original Message- From: James Stauffer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 1:21 PM To: Log4J Users List Subject: Re: To Screen *NOT* to Console On 12/13/05, Slaughter, Stan <

Re: To Screen *NOT* to Console

2005-12-14 Thread James Stauffer
On 12/13/05, Slaughter, Stan <[EMAIL PROTECTED]> wrote: > What do I need to do to set up an Appender to log to the screen not the > console? > > The equivalent of out.print in a JSP file instead of System.out.print > > I need to let the user know when an error occurs and logging error messages > to

RE: To Screen *NOT* to Console

2005-12-14 Thread Slaughter, Stan
age called ERServer: http://www.free-project.org/dev/javadoc/ERServer/package-summary.html Application Architect [EMAIL PROTECTED] Ext 6418 -Original Message- From: Philip Denno [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 5:14 PM To: Log4J Users List Subject: RE: To Screen *

RE: To Screen *NOT* to Console

2005-12-13 Thread Scott Deboy
Scott -Original Message- From: Slaughter, Stan [mailto:[EMAIL PROTECTED] Sent: Tue 12/13/2005 3:01 PM To: 'Log4J Users List' Subject: RE: To Screen *NOT* to Console It's common in applications which have an end user. JSP's are running in a web browser, so there is a n

RE: To Screen *NOT* to Console

2005-12-13 Thread Philip Denno
al Message- From: Slaughter, Stan [mailto:[EMAIL PROTECTED] Sent: December 13, 2005 3:02 PM To: 'Log4J Users List' Subject: RE: To Screen *NOT* to Console It's common in applications which have an end user. JSP's are running in a web browser, so there is a need to tell the use

RE: To Screen *NOT* to Console

2005-12-13 Thread Slaughter, Stan
lly ignores the fact that the user is left hanging, wondering what is going on. How do you do it? Application Architect [EMAIL PROTECTED] Ext 6418 -Original Message- From: Philip Denno [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 13, 2005 4:32 PM To: Log4J Users List Subject: RE: T

RE: To Screen *NOT* to Console

2005-12-13 Thread Philip Denno
behaviour. Cheers, Philip. -Original Message- From: Slaughter, Stan [mailto:[EMAIL PROTECTED] Sent: December 13, 2005 2:19 PM To: 'Log4J Users List' Subject: RE: To Screen *NOT* to Console Thanks for the reply Phillip, So, it sounds like log4j can not log to a screen unless

RE: To Screen *NOT* to Console

2005-12-13 Thread Slaughter, Stan
Subject: RE: To Screen *NOT* to Console I assume that your application has a logger configured and is using the console appender. If so then you need to create your own appender by subclassing (look in the log4j javadoc for the correct class to use). You would then update your config file to add

RE: To Screen *NOT* to Console

2005-12-13 Thread Philip Denno
messages generated and sent to the logger would then go to your custom appender as well as the console appender. Cheers, Philip. -Original Message- From: Slaughter, Stan [mailto:[EMAIL PROTECTED] Sent: December 13, 2005 1:29 PM To: 'Log4J Users List' Subject: To Screen *NOT* to Cons

To Screen *NOT* to Console

2005-12-13 Thread Slaughter, Stan
What do I need to do to set up an Appender to log to the screen not the console? The equivalent of out.print in a JSP file instead of System.out.print I need to let the user know when an error occurs and logging error messages to a console does not do it. I'd think a common task would be to send