Chainsaw: 2 new Apache-licensed tools

2005-10-04 Thread Scott Deboy
For those who might be interested, I got ahold of the JToaster author and told him I was interested in adding support for JToaster in Chainsaw. The license was incompatible, but he was kind enough to change it to the Apache 2 license. I had a similar conversation with the author of IRCLib (an I

RE: Log4J Eclipse

2005-10-04 Thread Scott Deboy
I've written a relatively simple eclipse plugin but I have so much on my plate I couldn't take it on. I did talk to the Ganymede author at one time in the (recent) past and he mentioned an interest in collaborating on a Chainsaw-style eclipse plugin. Of course, the license would have to change

RE: Catching Log4j Exceptions

2005-10-04 Thread Scott Deboy
It looks like this appender will throw an exception (IllegalStateException) if you don't set the 'remoteHost' property. Of course, you'll probably get NPEs in other places if required fields aren't specified on other appenders. -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECT

Re: Catching Log4j Exceptions

2005-10-04 Thread Jacob Kjome
Oh, ok, the exception is printing to the console, but is not blowing up your app. Log4j is doing what it should. It does not throw exceptions. It squashes them, but lets you know about it by printing the error. The fix is to either correct the Log4j configuration or, if the UDP address is prop

Re: Log4J Eclipse

2005-10-04 Thread Paul Smith
This one's been on the list for a while, but neither Scott or I have really dug into Eclipse plugins at this stage. I think it would be very cool and I know I would use it a lot, but just cannot get decent time set aside to even start looking into building plugins. Paul On 05/10/2005, at

Re: Catching Log4j Exceptions

2005-10-04 Thread illumine
I'm seeing this error in my junit testing. I'm doing log.info(message). Before this call I've attached a UDPAppender (with a "badhost") and removed all other appenders. /EA 3050 [main] ERROR org.apache.log4j.net.UDPAppender - Could not find address of [badhost]. java.net.UnknownHostEx

Re: Catching Log4j Exceptions

2005-10-04 Thread Jacob Kjome
Quoting [EMAIL PROTECTED]: > I have a question which has likely been answered (sorry, couldn't find > it): I'm using a UDPAppender so I want to be able to catch exceptions > like UnknownHostException or BindException, but if I do... > > log.info("sending UDP message"); > > and it fails, the Excep

Catching Log4j Exceptions

2005-10-04 Thread illumine
I have a question which has likely been answered (sorry, couldn't find it): I'm using a UDPAppender so I want to be able to catch exceptions like UnknownHostException or BindException, but if I do... log.info("sending UDP message"); and it fails, the Exception is sent to the console, but I'm

Re: Log4J Eclipse

2005-10-04 Thread Alan Gutierrez
* Mark Womack <[EMAIL PROTECTED]> [2005-10-04 12:15]: > It would be cool if we could plug Chainsaw into Eclipse. Paul, > Scott, how hard do you think that would be? Well, if that GPL'd Eclipse plugin is unmaintained, I'm still willing to have a go at starting up a plugin. -- Alan Gutierr

RE: Log4J Eclipse

2005-10-04 Thread Rakesh Patel
Well I found this link: http://www.magpiebrain.com/archives/2003/09/19/ganymede_revisited_log4j_ in_eclipse I can now programmatically configure log4j and it produces output: BasicConfigurator.configure(new SocketAppender("localhost",4445)); The line numbers don't appear though. If anyone has m

RE: Log4J Eclipse

2005-10-04 Thread Rakesh Patel
I've just installed Ganymede but cannot get it to work. No errors, just nothing. Here's my property file: log4j.rootCategory=DEBUG, Ganymede log4j.appender.Ganymede=org.apache.log4j.net.SocketAppender log4j.appender.Ganymede.remoteHost=localhost log4j.appender.Ganymede.port=4445 log4j.appender.Ga

Re: Log4J Eclipse

2005-10-04 Thread Mark Womack
It would be cool if we could plug Chainsaw into Eclipse. Paul, Scott, how hard do you think that would be? -Mark On 10/4/05, Alan Gutierrez <[EMAIL PROTECTED]> wrote: > > * Robert Hedin <[EMAIL PROTECTED]> [2005-10-04 11:03]: > > Checkout the Ganymede Plugin for Eclipse: > > http://sourceforge.ne

Re: Log4J Eclipse

2005-10-04 Thread Alan Gutierrez
* Robert Hedin <[EMAIL PROTECTED]> [2005-10-04 11:03]: > Checkout the Ganymede Plugin for Eclipse: > http://sourceforge.net/projects/ganymede/ > > Basically, you setup your appenders to use a SocketAppender and this > listens for logging messages and displays them, color coded, in a table. > Al

Re: Log4J Eclipse

2005-10-04 Thread Robert Hedin
Checkout the Ganymede Plugin for Eclipse: http://sourceforge.net/projects/ganymede/ Basically, you setup your appenders to use a SocketAppender and this listens for logging messages and displays them, color coded, in a table. Also allows you to filter the messages, etc. rob. Alan Gutierr

Re: Log4J Eclipse

2005-10-04 Thread Alan Gutierrez
* Bradley, Todd <[EMAIL PROTECTED]> [2005-10-04 10:42]: > > -Original Message- > > From: Alan Gutierrez [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, October 04, 2005 8:40 AM > > To: [email protected] > > Subject: Log4J Eclipse > > > > Is there a Log4J Eclipse plugin? > >

RE: Log4J Eclipse

2005-10-04 Thread Harp, George
You can write to console for applications you run inside the ide. If it is outside the IDE there is a tail plugin for eclipse. -Original Message- From: Alan Gutierrez [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 04, 2005 9:40 AM To: [email protected] Subject: Log4J Eclip

RE: Log4J Eclipse

2005-10-04 Thread Bradley, Todd
None that I've heard of, but that would be really, really cool. I'm imagining something like Chainsaw v2 that's just another view in Eclipse. Oooh! > -Original Message- > From: Alan Gutierrez [mailto:[EMAIL PROTECTED] > Sent: Tuesday, October 04, 2005 8:40 AM > To: [email protected]

Log4J Eclipse

2005-10-04 Thread Alan Gutierrez
Is there a Log4J Eclipse plugin? One that will display Log4J messages in a table view? -- Alan Gutierrez - [EMAIL PROTECTED] - http://engrm.com/blogometer/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: Show logs in real time on a Swing Application

2005-10-04 Thread Ricardo Lopes
Yes i check out chainsaw a long time ago, is nice, but doesn't fit my needs. And i have to change my log to xml format . Thanks, Ricardo Lopes. Harp, George wrote: Have you checked out chainsaw? -Original Message- From: Ricardo Lopes [mailto:[EMAIL PROTECTED] Sent: Monday, October

getting timestamp in my HTML log file

2005-10-04 Thread Aries Fajar
Hi, I need to show the timestamp ( HH:MM:SS or other format ) information in my HTML log file. So far what i get is just how many seconds after the program start. Is there any configuration/properties in the configuration file regarding this timestamp format ? Thanks Aries