RE: Re: Chainsaw Tabs

2005-09-08 Thread Scott Deboy
You need an 'application' property that is added to every event processed by an appender (this application property would be unique per appender). Once the application property is added to every event, you can use the default tab identifier in Chainsaw and have events route correctly to tabs (one

Re: Chainsaw Tabs

2005-09-08 Thread Rakesh Patel
Scott Deboy comotivsystems.com> writes: > > hostname and application properties are concatenated to determine the tab routing..you can change > this in the app-wide prefs window. > > By the way, socket-based appenders define the hostname property for you - that's why you see two tabs. > > I

using log4j in simple java client programs

2005-09-08 Thread raj . x . arunmugan
Sorry .. I forgot to type a subject in my earlier mail/.. I am new to log4j.. I have a web project in which I have log4j.properties under WEB-INF/classes folder and I do configure log4j during application start up using one of my servlet. as shown below PropertyConfigurator.configure(log

RE: Officla log4j 1.2.12 Release

2005-09-08 Thread Mark Womack
Well, there is only so much you can fit into a dot release...:-) But we will certainly take the patch into consideration for the 1.3 release too. I don't know how likely it is at this point (we need to review the tasks, etc), but we were hoping to have 1.3 released before the end of this year. -

Re: DailyRollingFileAppender writing to previous day's log

2005-09-08 Thread lawrence
Thanks for the suggestion (I will investigate it as a possible solution), but what if I have to write to the same log file? -L On Thu, Sep 08, 2005 at 09:58:34AM +0200, Bender Heri wrote: > Hi > > If it's not a must to write into the same log file: there are several > techniques to separate th

RE: Chainsaw Tabs

2005-09-08 Thread Scott Deboy
hostname and application properties are concatenated to determine the tab routing..you can change this in the app-wide prefs window. By the way, socket-based appenders define the hostname property for you - that's why you see two tabs. If you use 1.3, the socketappenders have a param you can s

Chainsaw Tabs

2005-09-08 Thread Rakesh Patel
I am trying to determine how i can create the proper tab identifiers in chainsaw, here is my current scenario: i have a chainsaw config file where i listen to 4 socket hub receivers. one socket hub receiver connects to a port box1 and the three remaining socket hub receivers listen to three box

Re: Officla log4j 1.2.12 Release

2005-09-08 Thread Nicolas De Loof
I'm so sory my patch is not include in this version ;-( (http://issues.apache.org/bugzilla/show_bug.cgi?id=35996) I'll have to wait for 1.2.13... Nico. Mark Womack a écrit : The log4j team is proud to announce the official release of log4j 1.2.12! This new version contains a number of bug

Officla log4j 1.2.12 Release

2005-09-08 Thread Mark Womack
The log4j team is proud to announce the official release of log4j 1.2.12! This new version contains a number of bug fixes, the addition of the much requested TRACE level, and is compile and runtime compatible with the earlier JDK's 1.1 and 1.2 (this feature had been inadvertently broken in ver

RE: DailyRollingFileAppender writing to previous day's log

2005-09-08 Thread Bender Heri
Hi If it's not a must to write into the same log file: there are several techniques to separate the logger universes in order that the same package/class writes to different log files. The easiest way is by using the fact that the different apps run in different thread contexts (I assume this i