RE: where can i get chainsaw 2

2003-12-15 Thread Scott Deboy
Chainsaw 2 is available from the jakarta-log4j CVS module available here: http://jakarta.apache.org/site/cvsindex.html or via an ant script Paul Smith contributed to the list. The ant script will download the ORO dependency and the CVS tip, making it a lot easier to try Chainsaw 2. I've re-attach

RE: [Chainsaw]: Ant-based installer

2003-12-11 Thread Scott Deboy
hildren. The solution of expressions suggested by Scott offers a far more precise control but probably is harder to put in place for the user. Just my 2 shallow cents. At 10:39 PM 12/10/2003 -0800, Scott Deboy wrote: >I personally would like to see the logger tree stay simple. Focusing

RE: [Chainsaw]: Ant-based installer

2003-12-10 Thread Scott Deboy
I personally would like to see the logger tree stay simple. Focusing on a node implies you can see everything under it - makes sense to me. NOTE: the information following applies only to the CVS tip version of Chainsaw v2: If you want to exclude certain packages, why not build an expression i

RE: Chainsaw

2003-12-08 Thread Scott Deboy
I wanted a log analysis tool that provided more powerful features than LogFactor 5 or Chainsaw currently supported (regular-expression based color and display filters, JTabbedPane-based panels that could be docked/undocked). So I started developing the tool, taking advantage of the original Chains

Resolution: How stable is Chainsaw 2?

2003-11-30 Thread Scott Deboy
assDefFoundError: org/apache/log4j/chainsaw/LogUI [java] Exception in thread "main" [java] Java Result: 1 BUILD SUCCESSFUL Total time: 15 seconds H:\cvs\jakarta-log4j> -Original Message- From: Scott Deboy [mailto:[EMAIL PROTECTED] Sent: Saturday, November 29, 2003

RE: How stable is Chainsaw 2?

2003-11-29 Thread Scott Deboy
[EMAIL PROTECTED] I think JDeveloper may be the culprit. Can you run it outside JDeveloper? (with no extra classes in the classpath except ant)? prerequisites: cvs, ant (a recent version, 1.5.1 or newer?), jdk 1.3 or greater 1: pull the tip of the jakarta-log4j cvs module (see http://jakarta.

RE: How do I use filters in AND condition fashion?

2003-11-19 Thread Scott Deboy
ssage- From: Paul Smith [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 2:14 PM To: Log4J Users List Subject: RE: How do I use filters in AND condition fashion? On Thu, 2003-11-20 at 05:16, Scott Deboy wrote: > I'm not sure about whether this capability is available using

RE: How do I use filters in AND condition fashion?

2003-11-19 Thread Scott Deboy
I'm not sure about whether this capability is available using the latest distribution's set of filters, but I've contributed a simple expression language and an ExpressionFilter (should be a part of the next release) which provide support for expressions using a number of operators, grouping (paren

Status of Log4J-implementation for other languages

2003-11-02 Thread Scott Deboy
See http://jakarta.apache.org/log4j/docs/download.html - ports to other languages Delphi: (log4D) http://codecentral.borland.com/codecentral/ccweb.exe/listing?id=3D16445 log4cxx (http://log4cxx.sourceforge.net/) provides a number of appenders, filters and layouts. log4perl (http://log4perl.so

RE: Logging from an applet - loading configuration problem

2003-10-14 Thread Scott Deboy
If you're using jdk1.4, use something like this in the java plugin's runtime parameters (where {DIRECTORY} is where your jar and config file lives): -Xbootclasspath/p:{DIRECTORY};{DIRECTORY}\log4j.jar -Dlog4j.configuration=log4j.xml -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAI

RE: Log file Viewer

2003-10-06 Thread Scott Deboy
Chainsaw supports loading of events saved to a file in XMLLayout format. (File-load file) The version of Chainsaw in development supports XMLLayout-formatted files, but will also open each file into it's own tab in the UI. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTE

RE: Plans for supporting a build in level of "trace"

2003-09-22 Thread Scott Deboy
It would be for jboss folks...they use a custom trace level. I've already created a custom level (although it's probably not perfect) for providing support for jdk1.4 util.logging-generated events (and their levels) in Chainsaw v2. See http://cvs.apache.org/viewcvs/jakarta-log4j/src/java/org/apac

RE: Customising Chainsaw

2003-07-30 Thread Scott Deboy
Thanks. On a different note, I hope log4j will start using schemas instead of dtds soon. On Wed, 30 Jul 2003 08:01:25 -0700, Scott Deboy wrote: >Since Chainsaw supports all of LoggingEvent's capabilities (MDC, >properties, NDC), I would think a transform of this format into log4j

RE: Customising Chainsaw

2003-07-30 Thread Scott Deboy
Since Chainsaw supports all of LoggingEvent's capabilities (MDC, properties, NDC), I would think a transform of this format into log4j's dtd would be straightforward if you made the extra fields properties. Chainsaw could then be used to view the events. One thing to remember is that Chainsaw rend

RE: Chainsaw V2 - Screenshot

2003-07-15 Thread Scott Deboy
u have more feedback, please keep it coming. Hope this helps, Scott Deboy -Original Message- From: Tauzell, Dave [mailto:[EMAIL PROTECTED] Sent: Tue 7/15/2003 6:48 AM To: Log4J Users List Cc: Subject:RE: Chainsaw V2 - Screenshot Hi, I've been playing with the ne

RE: A possible BUG? Logger vs category tag in xml (DOMConfigurator)

2003-07-14 Thread Scott Deboy
I believe Chainsaw V2 has a similar requirement - as events are received, the appname and hostname are examined and events are routed to tabs in the tabbedpane-based UI corresponding to the unique appname/hostname combination. For my purposes it was OK to use appender options (see any of the net

RE: Chainsaw V2 - Screenshot

2003-06-27 Thread Scott Deboy
to view the image (the above is a shorter URL)] You will see a number of the new visual changes that have been made in the new version (but by no means all of them!). I'm hoping that this screenshot may encourage anyone that has used the (excellent) original Chainsaw, and anyone who has neve

RE: java.util.logging & log4j

2003-06-23 Thread Scott Deboy
onfig directory (log4j-receiver-sample.xml). Here is the plugin definition used to receive JDK1.4 events: Let me know if you need further information. Scott Deboy [EMAIL PROTECTED] -Original Message- From: Huu Phuoc [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2003 1:0

RE: Logging to webservice

2003-06-18 Thread Scott Deboy
nts can be received via JDBCReceiver. Last time I spoke with Nicko from the log4net project at sourceforge, he had written an xml layout that should produce log4j compliant xml, but he mentioned more testing is needed and he hasn't had time recently. Scott Deboy [EMAIL PROTECTED] -O

RE: Chainsaw and a database

2003-06-05 Thread Scott Deboy
I've committed a number of receivers and appenders, including a JDBCReceiver, to the log4j-sandbox project (part of next release, hopefully). Here are other receivers/appenders I've contributed that may be of interest as well: * A receiver which accepts XML events via TCP sockets (includes suppo