[ANNOUNCE] Log4j 1 End-of-Life Statement

2022-01-05 Thread Ron Grabowski
Dear Log4j community, While working on the December 2021 Apache Log4j 2 releases the Apache Logging Services PMC received requests to reevaluate the 2015 End-of-Life (EOL) decision for Apache Log4j 1, which has seen its latest release in 2012. We have considered these requests and discussed vario

Re: User-based logger level

2012-06-15 Thread Ron Grabowski
Typo at the bottom of: http://loggingtest.apache.org/log4j/2.x/manual/filters.html    To: Log4J Users List Sent: Tuesday, June 12, 2012 1:08 AM Subject: Re: User-based logger level In Log4j 2 the DynamicThresholdFilter can be specified a) globally (equivalent to Logback's TurboFilter) b) on

Re: New Implementation: Logger-level Filtering

2007-05-20 Thread Ron Grabowski
In log4net we have a ForwardingAppender that takes a message and fowards it to one or more other appenders. To solve the problem of not having to apply filters twice I'd put a ForwardingAppender infront of the two other appenders. If the message passed through the filters on the FowardingAppend

Re: Keeping debug-logs in error case

2006-02-09 Thread Ron Grabowski
I don't know if log4j supports this, but in log4net its possible to configure a BufferingForwardingAppender to record log messages at a certain threshold (ERROR for example). When a log entry of ERROR is received, the preceeding 512 (user settable via the bufferSize property) log messages of all le

Re: log4j documentation help?

2005-12-20 Thread Ron Grabowski
Are you looking for something like this: http://logging.apache.org/log4net/release/manual/configuration.html http://logging.apache.org/log4net/release/config-examples.html Examples showing how to use each of the built-in appenders is helpful. - Original Message From: Mark Womack <[EM

Re: Article: Yahoo Messenger Appender

2005-09-16 Thread Ron Grabowski
protected void append(LoggingEvent event) { new YahooMessengerAPI().sendYahooIM( getFromYahooId(), getFromYahooIdPassword(), getToYahooId(), (String)event.getMessage()); } I wonder if that keeps the YIM client logged in while the application is running or if it connects and discon

RE: Changing the default detail layout in Chainsaw on a per plugin basis

2005-09-14 Thread Ron Grabowski
ng > on the tab identifier? > > I'd like to add a configurable default and save/reload of changed > layouts on a per-tab basis, but don't have much time. > > Scott > > -Original Message- > From: Ron Grabowski [mailto:[EMAIL PROTECTED] > Sent:

Changing the default detail layout in Chainsaw on a per plugin basis

2005-09-14 Thread Ron Grabowski
Can non-log4j nodes be in a Chainsaw config file? Does Chainsaw have an API for retrieving nodes outside of log4j:configuration when a config file is specified? I'm currently using the following plugin to configure Chainsaw: I don't like the default detail layout: http://tinyurl.com/bmug

Re: Why does the FileAppender create a zero byte file when logger is set to OFF?

2005-07-21 Thread Ron Grabowski
Sorry...wrong list! --- Ron Grabowski <[EMAIL PROTECTED]> wrote: > When I set my root logger to OFF: > > > > > > > A zero byte output file for my FileAppender appender is still > created. > Why is this?

Why does the FileAppender create a zero byte file when logger is set to OFF?

2005-07-21 Thread Ron Grabowski
When I set my root logger to OFF: A zero byte output file for my FileAppender appender is still created. Why is this? I would expect no file to be created. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

Re: Release of NLOG4J version 1.2.11

2005-05-15 Thread Ron Grabowski
FYI, NLog is a .Net logger that is in active development: http://nlog.sourceforge.net/ --- Ceki Gülcü <[EMAIL PROTECTED]> wrote: > > Hello all, > > I am proud to announce the release of NLOG4J version 1.2.11, a > log4j-replacement with native SLF4J API support. Except for users of > LF5, chain

Re: Example policies for log levels?

2004-12-09 Thread Ron Grabowski
We seem to be using similiar rules for our levels. It is not uncommon for a statement to jump around between a couple different levels until we decide the best place to put it. DEBUG lots of information; exception optional INFO generally one line messages without exceptions to show progress of ap

Setting basic Chainsaw properties (save detail pane settings)

2004-12-07 Thread Ron Grabowski
I've successfully setup Chainsaw v2 with log4net using the UDPReceiver. Is there anyway to have Chainsaw save my detail pane settings? I would like to change the way the default HTML is laid out in the detail pane and have that automatically reloaded each time. I came across the "Save Chainsaw