A few problems to report

2008-05-01 Thread Dale King
ReconnectionDelay is not working for XMLSocketAppender. This method is backwards: void SocketAppenderSkeleton::fireConnector() { synchronized sync(mutex); if (thread.isActive()) { thread.run(monitor, this); } } You need a ! on the if condition, I was also

Re: Why are there unimplemented filters defined?

2008-05-01 Thread Dale King
There may have been code that compiled using those headers, but it wouldn't have linked. Found a bug perusing SyslogAppender (notice the repeated use of LOCAL1): else if (StringHelper::equalsIgnoreCase(s, LOG4CXX_STR("LOCAL0"), LOG4CXX_STR("local0"))) { return LOG_

Re: Why are there unimplemented filters defined?

2008-05-01 Thread Curt Arnold
On May 1, 2008, at 9:45 AM, Dale King wrote: It looks like there are a few filters that have header files, but no source files. In particular, AndFilter, ExpressionFilter, LocationInfoFilter, MapFilter and PropertyFilter appear to not be implemented. If there is no implementation I don't thin

Why are there unimplemented filters defined?

2008-05-01 Thread Dale King
It looks like there are a few filters that have header files, but no source files. In particular, AndFilter, ExpressionFilter, LocationInfoFilter, MapFilter and PropertyFilter appear to not be implemented. If there is no implementation I don't think the headers should be included as this will con