bugzilla | 5 Feb 08:15
Picon
Favicon

Bug report for Log4j [2012/02/05]

+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
|13099|Opn|Nor|2002-09-27|DOMConfigurator ignores category factory setting  |
|17887|Opn|Maj|2003-03-11|RollingFileAppender does not work for 10 threads  |
|20395|Inf|Enh|2003-06-01|PreparedStatementAppender Enhancement             |
|23329|New|Enh|2003-09-22|<logger> element in XML config should support reso|
|26084|Inf|Nor|2004-01-13|Log Event detail panel does not show special chara|
|27363|Inf|Enh|2004-03-02|JNI based SyslogAppender                          |
|27367|Inf|Enh|2004-03-02|NetSendAppender                                   |
|29244|Inf|Nor|2004-05-27|Preserve XML content in log messages when using XM|
|29305|New|Nor|2004-05-30|Chainsaw doesn't see locationinfo from XMLSocketRe|
|30055|New|Nor|2004-07-12|Problem with registering Appenders with the same n|
|30407|Inf|Maj|2004-07-30|Externally rolled file problem                    |
|30888|Inf|Maj|2004-08-27|Chainsaw mixes files in same panel                |
|30892|New|Min|2004-08-27|Log files cannot be closed                        |
|31089|New|Nor|2004-09-07|Does not accept ISO8601 dates in focus field      |
|31178|Inf|Cri|2004-09-11|Exception using Chainsaw for simple debugging     |
|31179|Ass|Enh|2004-09-11|Implement Chainsaw as Eclipse stand-alone applicat|
|33278|New|Min|2005-01-27|NPE thrown durring daily log file rollover        |
(Continue reading)

Picon
Gravatar

Building a new release

folks,

i have some trouble to fully build the release. My problem is related
to the mingw dependencies i need to create a dll or so. I am not sure
what to install on my box, there are three different things related to
mingw (i use mac ports). Now on the other hand I would like to proceed
with 1.2.17.

Is there anybody willing to to the windows tests when I have build the
RC? Maybe one of the log4net gurus? :-)

Cheers,
Christian

--

-- 
http://www.grobmeier.de
https://www.timeandbill.de
Picon
Favicon

[jira] [Created] (LOG4J2-56) Level.toLevel throws IllegalArgumentException instead of returning default Level

Level.toLevel throws IllegalArgumentException instead of returning default Level
--------------------------------------------------------------------------------

                 Key: LOG4J2-56
                 URL: https://issues.apache.org/jira/browse/LOG4J2-56
             Project: Log4j 2
          Issue Type: Bug
          Components: API
    Affects Versions: 0.1
         Environment: Java 6
            Reporter: John Owen Atala
            Priority: Minor

org.apache.logging.log4j.Level.toLevel(String, Level) ( Level.java line 100) uses enum static
method valueOf(String) which throws IllegalArgumentException instead of returning null when enum
const doesnt exists. This makes the methods Level.toLevel throw the exception instead of return default value.

Solution:

You can:
a) sorround it with a try-catch statement, like:
        try {
			return valueOf(sArg);
		} catch (Exception e) {
			//exception doesnt matter
			return defaultLevel;
		}

b) translate manually de String to a enum constant, like:
        for (Level level : values()) {
(Continue reading)

bugzilla | 1 Feb 15:32
Picon
Favicon

DO NOT REPLY [Bug 42189] Add simple bridge for java.util.logging, with basic Configurator support

https://issues.apache.org/bugzilla/show_bug.cgi?id=42189

--- Comment #19 from Emmanuel Bourg <ebourg <at> apache.org> 2012-02-01 14:32:01 UTC ---
Is there any updates on this topic? Is help needed? I have been using this
component for quite some time now, most notably as a mean to nicely format the
JUL messages in my test cases without touching the code. An official release in
the central Maven repository, either as an independent component or as part of
the core distribution, would be very welcome.

For the record here is how I use the bridge to format the log messages in my
tests, in the Maven POM I put this:

  <dependencies>
    <dependency>
      <groupId>org.apache.logging</groupId>
      <artifactId>apache-jul-log4j-bridge</artifactId>
      <version>1.0.0-SNAPSHOT</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.16</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <plugin>
    <artifactId>maven-surefire-plugin</artifactId>
(Continue reading)

bugzilla | 30 Jan 06:44
Picon
Favicon

DO NOT REPLY [Bug 52555] New: [main][WARN][SocketServer]Could not find config file [log4jconfig/.lcf].

https://issues.apache.org/bugzilla/show_bug.cgi?id=52555

             Bug #: 52555
           Summary: [main][WARN][SocketServer]Could not find config file
                    [log4jconfig/.lcf].
           Product: Log4j
           Version: 1.2
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Configurator
        AssignedTo: log4j-dev <at> logging.apache.org
        ReportedBy: patel.040 <at> scii.in
    Classification: Unclassified

[2011/11/10 15:46:41][][main][WARN][SocketServer]Could not find config file
[log4jconfig/.lcf].
[2011/11/10 15:46:41][][main][WARN][SocketServer]Could not find config file
[log4jconfig/generic.lcf]. Will use the default hierarchy.

I am using FileAppender.

when i deploy my application it gives message in file start as above

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
(Continue reading)

Ralph Goers | 30 Jan 00:26
Picon
Favicon

Re: [jira] [Commented] (LOG4J2-1) Custom rendering of exception associated with logging event

Thanks Brett. That obviously isn't spam

Sent from my iPad

On Jan 29, 2012, at 2:27 PM, Brett Porter <brett <at> apache.org> wrote:

> Google translate seems to indicate it is a question:
> 
> "This is the log4j 2 version? Why not download link"
> 
> On 29/01/2012, at 6:55 PM, Ralph Goers wrote:
> 
>> I assume this is spam. How do I remove it.
>> 
>> On Jan 28, 2012, at 11:46 PM, bill gate (Commented) (JIRA) wrote:
>> 
>>> 
>>>  [
https://issues.apache.org/jira/browse/LOG4J2-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13195707#comment-13195707
] 
>>> 
>>> bill gate commented on LOG4J2-1:
>>> --------------------------------
>>> 
>>> 这个是log4j的2版本么?为啥没有下载链接啊???
>>> 
>>>> Custom rendering of exception associated with logging event
>>>> -----------------------------------------------------------
>>>> 
>>>>              Key: LOG4J2-1
(Continue reading)

Picon
Favicon

[jira] [Commented] (LOG4J2-1) Custom rendering of exception associated with logging event


    [
https://issues.apache.org/jira/browse/LOG4J2-1?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13195707#comment-13195707
] 

bill gate commented on LOG4J2-1:
--------------------------------

这个是log4j的2版本么?为啥没有下载链接啊???

> Custom rendering of exception associated with logging event
> -----------------------------------------------------------
>
>                 Key: LOG4J2-1
>                 URL: https://issues.apache.org/jira/browse/LOG4J2-1
>             Project: Log4j 2
>          Issue Type: Improvement
>          Components: Layouts
>            Reporter: Curt Arnold
>
> In http://marc.info/?l=log4j-user&m=120898200413495&w=2, Robert Pepersack essentially asks for a
method of overriding the use of Exception.printStackTrace() to capture the stack trace of the
associated exception.  This can partially be done in log4j 1.x by providing a custom layout that returns
false for ignoresThrowable and then performs the rendering of the exception as part of the layout. 
However, it would not affect LoggingEvents that were deserialized.  Also, if an AsyncAppender is used,
the layout would be rendering an exception after it may have been modified.
> The log4j 2 pipeline should not have this issue as the extraction phase done by the layout should pull any
info needed from the exception and the responsibility would not be split among WriterAppender,
ThrowableInformation and the layout.  So likely there is no additional design criteria involved here,
just the final design should be checked that it satisfies this use case.
(Continue reading)

bugzilla | 29 Jan 08:15
Picon
Favicon

Bug report for Log4j [2012/01/29]

+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
|13099|Opn|Nor|2002-09-27|DOMConfigurator ignores category factory setting  |
|17887|Opn|Maj|2003-03-11|RollingFileAppender does not work for 10 threads  |
|20395|Inf|Enh|2003-06-01|PreparedStatementAppender Enhancement             |
|23329|New|Enh|2003-09-22|<logger> element in XML config should support reso|
|26084|Inf|Nor|2004-01-13|Log Event detail panel does not show special chara|
|27363|Inf|Enh|2004-03-02|JNI based SyslogAppender                          |
|27367|Inf|Enh|2004-03-02|NetSendAppender                                   |
|29244|Inf|Nor|2004-05-27|Preserve XML content in log messages when using XM|
|29305|New|Nor|2004-05-30|Chainsaw doesn't see locationinfo from XMLSocketRe|
|30055|New|Nor|2004-07-12|Problem with registering Appenders with the same n|
|30407|Inf|Maj|2004-07-30|Externally rolled file problem                    |
|30888|Inf|Maj|2004-08-27|Chainsaw mixes files in same panel                |
|30892|New|Min|2004-08-27|Log files cannot be closed                        |
|31089|New|Nor|2004-09-07|Does not accept ISO8601 dates in focus field      |
|31178|Inf|Cri|2004-09-11|Exception using Chainsaw for simple debugging     |
|31179|Ass|Enh|2004-09-11|Implement Chainsaw as Eclipse stand-alone applicat|
|33278|New|Min|2005-01-27|NPE thrown durring daily log file rollover        |
(Continue reading)

Steve Mactaggart | 25 Jan 00:42
Favicon
Gravatar

Updated HTML Layout missing

Hi all,

It's been a while since I messaged this group, not sure if anyone is still around from the old days.

I just had a question, I remember contributing an updated HTMLLayout to the project years ago, that I'm sure got committed.  It added Pattern Layout support to control the format of the resultant log file when in HTML mode.

I can't seem to find it in the current build, and was wondering if anyone knows where it went?

I've been trying to find it, and can find emails from that time talking about the contribution, even found a history file mentioning its inclusion as of November 24th.

I've just had a need to use it again, but can't seem to find it.

Cheers,
Steve
Arne Vandamme | 24 Jan 09:36
Picon
Favicon
Gravatar

Contribution to RollingFileAppender (log4j-extras)

Hi,

 

This applies to log4j-extras (1.1).

We use the RollingFileAppender with TimeBasedRollingPolicy in several of our applications.  But we like to group all logfiles on date in separate directories.  In our case it’s simply because it’s easier to browse them that way.

 

Eg:

-          2011/05/05/

o   pages.log

o   methods.log

-          2011/05/06/

o   pages.log

o   methods.log

 

Apparently the RollingFileAppender does not rollover in this case because the parent directories do not exist and the RollingFileAppender does not try to create them.

In attach a small patch file that modifies RollingFileAppender to create all parent directories in case of a rollover (+ a small test added to TimeBasedRollingPolicy).

 

I do not know if this is eligible or useful to be added to the trunk of log4j-extras.  It would be handy to know in order to know to switch back to either snapshot or a release of the extras lib.  Not that I’m expecting a new stable release anytime soon ;-)

 

Best regards,

Arne Vandamme

 

 

Attachment (dir-based-rollover.patch): application/octet-stream, 3240 bytes

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe <at> logging.apache.org
For additional commands, e-mail: log4j-dev-help <at> logging.apache.org
bugzilla | 22 Jan 08:15
Picon
Favicon

Bug report for Log4j [2012/01/22]

+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
|13099|Opn|Nor|2002-09-27|DOMConfigurator ignores category factory setting  |
|17887|Opn|Maj|2003-03-11|RollingFileAppender does not work for 10 threads  |
|20395|Inf|Enh|2003-06-01|PreparedStatementAppender Enhancement             |
|23329|New|Enh|2003-09-22|<logger> element in XML config should support reso|
|26084|Inf|Nor|2004-01-13|Log Event detail panel does not show special chara|
|27363|Inf|Enh|2004-03-02|JNI based SyslogAppender                          |
|27367|Inf|Enh|2004-03-02|NetSendAppender                                   |
|29244|Inf|Nor|2004-05-27|Preserve XML content in log messages when using XM|
|29305|New|Nor|2004-05-30|Chainsaw doesn't see locationinfo from XMLSocketRe|
|30055|New|Nor|2004-07-12|Problem with registering Appenders with the same n|
|30407|Inf|Maj|2004-07-30|Externally rolled file problem                    |
|30888|Inf|Maj|2004-08-27|Chainsaw mixes files in same panel                |
|30892|New|Min|2004-08-27|Log files cannot be closed                        |
|31089|New|Nor|2004-09-07|Does not accept ISO8601 dates in focus field      |
|31178|Inf|Cri|2004-09-11|Exception using Chainsaw for simple debugging     |
|31179|Ass|Enh|2004-09-11|Implement Chainsaw as Eclipse stand-alone applicat|
|33278|New|Min|2005-01-27|NPE thrown durring daily log file rollover        |
|33493|Inf|Enh|2005-02-10|contribution to log4j: servlet diagnostic context |
|34440|New|Nor|2005-04-13|sandbox:IMAppender - comma-seperated recipient lis|
|34491|Ver|Nor|2005-04-18|Missing include in build.jms target results in mis|
|34651|New|Enh|2005-04-27|allow for a header on top of every rolled file    |
|34738|Inf|Nor|2005-05-04|Chainsaw does not remember what Columns are select|
|34974|Inf|Cri|2005-05-19|Exception when running a Pluglet                  |
|35239|Inf|Nor|2005-06-06|NullPointerException when saving displayed events |
|35563|Inf|Enh|2005-06-30|Syslog appender parametrability                   |
|35996|Inf|Enh|2005-08-03|Add support for ant-like <property> in log4j.xml  |
|36435|New|Enh|2005-08-31|Log4J RollingFileAppender under OpenVMS does not f|
|36654|Inf|Min|2005-09-14|Provide better error messages for "Please initiali|
|36789|Inf|Nor|2005-09-23|Empty control flow statement in org.apache.log4j.l|
|37638|New|Nor|2005-11-25|logging doesn't fall back with FallbackErrorHandle|
|37734|New|Nor|2005-12-01|Customize Event ID and Event Category with NTEVent|
|38363|Ass|Maj|2006-01-24|SecurityException during log output               |
|38394|Ver|Enh|2006-01-26|PropertySetter fails to print stacktrace if error |
|38395|Ver|Reg|2006-01-26|Unable to set threshold on appender via config fil|
|38406|Ver|Nor|2006-01-26|jdk1.4 dependencies in log4j 1.3 alpha            |
|38513|New|Nor|2006-02-05|[PATCH] Suggested unit test for JMSAppender       |
|38582|Ass|Nor|2006-02-08|Chainsaw does not include Receiver JavaDoc in dist|
|38590|Inf|Nor|2006-02-09|no space on device fails another instance         |
|38883|Opn|Nor|2006-03-07|LogFilePatternReceiver fails to process multi-line|
|39690|Inf|Cri|2006-05-31|Initialization fail in J2EE Environment           |
|39691|Ass|Nor|2006-05-31|DBAppender doesn't log long events                |
|40068|New|Nor|2006-07-18|Add support for attach-on-demand API to chainsaw  |
|40251|Opn|Min|2006-08-14|Hard coded JMX domain name for MBean instances    |
|40382|Inf|Maj|2006-09-01|Sysappender hangs during boot time on HP          |
|40385|Inf|Maj|2006-09-01|SocketServer cannot find config file when passed a|
|40472|New|Nor|2006-09-11|SettingsManager calls loadSettings with global set|
|40533|New|Nor|2006-09-18|Chainsaw not showing all logging statements       |
|40570|Inf|Blk|2006-09-21|RollingFileAppender does not rollover when the fil|
|40611|New|Trv|2006-09-27|Bad subclass example; NullPointerException in Logg|
|40736|Inf|Nor|2006-10-11|log4j delete permission denied                    |
|40889|Inf|Nor|2006-11-03|repeated entries in log after failure             |
|40990|Inf|Nor|2006-11-17|Cannot bind port or ip address for outgoing UDP so|
|41006|Inf|Enh|2006-11-20|Contributing XMLSocketHubReceiver                 |
|41214|Ass|Maj|2006-12-19|Deadlock with RollingFileAppender                 |
|41311|Inf|Min|2007-01-06|Please make TimeBasedRollingPolicy non-final?     |
|41547|Inf|Nor|2007-02-05|PropertyConfigurator and layout.contentType       |
|41799|New|Enh|2007-03-09|SyslogAppender should enable to customize Log4j.Le|
|41882|Inf|Nor|2007-03-18|IE7 problems with Log4J web site                  |
|41980|Inf|Maj|2007-03-29|Log4j stop updating log file- version log4j-1.2.8 |
|42189|Ass|Nor|2007-04-22|Add simple bridge for java.util.logging, with basi|
|42213|Opn|Blk|2007-04-24|log4j causing threads to stuck in weblogic        |
|42516|Inf|Nor|2007-05-24|Log4j failed to log file when packaged in Eclipse |
|42664|New|Enh|2007-06-14|JUL Appender                                      |
|42883|Opn|Nor|2007-07-12|'Welcome' and 'Drag & Drop' panels can't be hidden|
|42933|Inf|Maj|2007-07-18|IllegalStateException thrown from FileAppender.clo|
|43282|Opn|Nor|2007-08-31|Add OSGi packaging info to log4j and companions   |
|43313|Ass|Nor|2007-09-05|log4j 1.2.16 release considerations and discussion|
|43619|New|Enh|2007-10-13|Simple proposal for pluggable sys-props resolvers |
|43637|Inf|Nor|2007-10-16|SocketAppender.append(LoggingEvent) calls the Erro|
|43728|Inf|Cri|2007-10-29|Log file loss when specified file is locked by ano|
|43736|Ass|Nor|2007-10-30|Chainsaw does not honor encoding when loading XML |
|43820|New|Enh|2007-11-08|[PATCH] Layered Configurator Patch                |
|43879|Inf|Nor|2007-11-16|FileAppender writes Header multiple times         |
|43911|Inf|Nor|2007-11-20|logfiles not getting rolled over with RollingFileA|
|43923|Inf|Min|2007-11-21|JBOSS specific information in javadocs            |
|44219|Inf|Nor|2008-01-13|'WARNING' for a log level is silently ignored/chan|
|44308|New|Enh|2008-01-28|[Patch] JMX component for managing Logger configur|
|44370|Inf|Reg|2008-02-06|MANIFEST.MF broken in log4j-1.2.15.jar            |
|44386|Opn|Nor|2008-02-10|NTEventLogAppender.dll for windows 64             |
|44526|Inf|Nor|2008-03-04|segmentation fault occuring when PropertyConfigura|
|44557|Inf|Nor|2008-03-07|no close call to Appender after replacing the root|
|44649|Inf|Nor|2008-03-20|JMS Hangs when a Root Appender                    |
|44700|New|Nor|2008-03-28|Log4J locks rolled log files                      |
|44727|Inf|Nor|2008-04-01|Add missing Logger#isErrorEnabled and isWarningEna|
|44834|Inf|Nor|2008-04-17|SimpleSocketServer looses buffered logs, produces |
|44839|Inf|Nor|2008-04-17|SyslogAppender logging to a UNIX domain socket    |
|44932|New|Cri|2008-05-05|improve DailyRollingFileAppender handling of rotat|
|44934|Inf|Enh|2008-05-05|add helper method to DailyRollingFileAppender to g|
|45042|New|Nor|2008-05-19|Need a reliable way to detect misconfiguration    |
|45109|Inf|Nor|2008-05-31|SMTPAppender uses wrong property for mail server  |
|45165|Ass|Enh|2008-06-09|Multifile Appender                                |
|45231|Ass|Nor|2008-06-18|Clear appenders call on logger calls a helper whic|
|45236|Inf|Cri|2008-06-19|Wriring output to an out-dated file.              |
|45304|Inf|Nor|2008-06-29|using log4j with OAS for some reasone all the logg|
|45482|Inf|Min|2008-07-25|Source contains unused variables                  |
|45629|New|Nor|2008-08-13|TopicConnection is not closed                     |
|45753|New|Nor|2008-09-06|Code contribution: BurstFilter for extras         |
|45781|New|Nor|2008-09-11|RollingFileAppender under Windows does not rotate |
|45855|New|Enh|2008-09-21|Add site/apt documentation for JULBridgeLogManager|
|45932|New|Nor|2008-10-01|Log4j JMX MBeans not cleaned up                   |
|45934|New|Enh|2008-10-02|FileAppender should use virtual-machine shutdown h|
|45939|New|Nor|2008-10-02|Cannot drop HierarchyDynamicMBean from LoggerRepos|
|46100|New|Enh|2008-10-27|NagiosAppender available for contribution         |
|46260|Inf|Nor|2008-11-21|RollingFileAppender and Tomcat has a strange behav|
|46426|Ass|Nor|2008-12-20|Implement commons-logging interfaces natively in l|
|46514|New|Nor|2009-01-12|provide API to re-init log4j                      |
|46533|New|Enh|2009-01-14|Deamon Thread                                     |
|46570|New|Nor|2009-01-20|DailyRollingFileAppender rolls logs into files dat|
|46573|Inf|Maj|2009-01-21|MDC attributes cant't be displayed on Chainsaw    |
|46592|Opn|Trv|2009-01-23|trim() on property file entries                   |
|46626|New|Enh|2009-01-29|Log4J 1.2.15 SyslogAppender doesn't not handle TAG|
|46691|New|Nor|2009-02-10|log4j file rolling over on restart of the server  |
|46804|New|Enh|2009-03-05|create the method PropertyConfigurator.configureAn|
|46868|New|Nor|2009-03-17|SocketHUBAppender: Allow restriction of binding to|
|46878|New|Cri|2009-03-19|Deadlock in 1.2.15 caused by AsyncAppender and Thr|
|46941|New|Enh|2009-03-31|Sub Level Logging Technique                       |
|46983|New|Enh|2009-04-07|More Debug output for log4j auto-configure request|
|47123|New|Blk|2009-04-29|TimeBasedRollingPolicy appends logs into a old log|
|47141|Inf|Enh|2009-05-02|add getCyclicBuffer() method to log4j SMTPAppender|
|47164|New|Enh|2009-05-07|HTMLLayout replace newline with <BR>              |
|47208|New|Enh|2009-05-17|Better Default colours for Log Panel Color Filter |
|47357|New|Min|2009-06-11|Declaring logger and category with same name cause|
|47575|Inf|Nor|2009-07-24|GZipping large files stops logging                |
|47595|Opn|Nor|2009-07-28|[companion] POMs of companions have problems      |
|47703|New|Nor|2009-08-18|Object rendering ought to be done outside synchron|
|47713|Inf|Nor|2009-08-20|SMTPAppender system properties propagation issue  |
|47740|Inf|Nor|2009-08-26|log4j 1.2.15 deadlock RootAppender NDC            |
|47883|New|Nor|2009-09-21|Lines dropped with UseNewHashFunction             |
|47898|Inf|Maj|2009-09-24|DailyRollingFileAppender unable to create backup l|
|47960|New|Min|2009-10-08|CompositeAppender contribution                    |
|48027|Inf|Cri|2009-10-20|Logger statements in a particular class file is no|
|48141|Inf|Cri|2009-11-05|Log file rotation issue in Linux VM               |
|48209|New|Nor|2009-11-17|Websphere 6.0: logging statements appear in the SY|
|48220|New|Min|2009-11-18|LoggingEvent.mdcCopy serialization with non-serial|
|48244|New|Min|2009-11-19|Socket Server configuration does not handle not re|
|48365|New|Maj|2009-12-10|Log4J DailyRollingFileAppender sometimes does not |
|48430|New|Nor|2009-12-22|log4j:ERROR Write failure. java.io.IOException: St|
|48502|New|Cri|2010-01-07|Issue: Rotation file is not getting created - Roll|
|48527|New|Maj|2010-01-11|maven metadata is out of date                     |
|48583|New|Enh|2010-01-20|allow format of timestamp (first column of log fil|
|48607|New|Cri|2010-01-25|Log levels are not displayed corectly             |
|48679|New|Nor|2010-02-04|performance of getEffectiveLevel can be significan|
|48704|New|Nor|2010-02-08|Multiple Java Process in Cluster Logging to the sa|
|48802|New|Nor|2010-02-23|Log4j not writting.                               |
|48820|New|Nor|2010-02-26|JDBCAppender inserts the current MDC values for th|
|48986|New|Nor|2010-03-25|RollingFileAppender.rollOver() calls this.setFile |
|49003|New|Nor|2010-03-27|SocketServerTestCase.test8 fails on Apache Harmony|
|49077|New|Nor|2010-04-09|Prepare smaller jar omitting LF5 and Chainsaw 1   |
|49177|New|Enh|2010-04-23|SyslogAppender: Make the maximum package size conf|
|49243|New|Min|2010-05-04|Fix one BZ number in Changelog of 1.2.16          |
|49247|New|Enh|2010-05-04|Add option for persistent/non-persistent delivery |
|49248|New|Min|2010-05-04|javadoc for org.apache.log4j.rolling.FixedWindowRo|
|49265|New|Nor|2010-05-07|log4j - java.io.OptionalDataException             |
|49307|New|Nor|2010-05-18|unusable error message when log4j.xml has a duplic|
|49349|New|Nor|2010-05-27|LoggingEvent stoped coming with AsyncAppender     |
|49353|New|Nor|2010-05-28|[patch] change logfactor userdir name to hidden di|
|49354|New|Nor|2010-05-28|XMLLayout writes illegal characters to XML file   |
|49359|New|Nor|2010-05-29|Log4j site should have some mention of git mirrori|
|49390|New|Nor|2010-06-05|1.0 releases of log4j companions component and rec|
|49421|New|Maj|2010-06-10|Chainsaw don't show Logger for SocketReceiver and |
|49470|New|Nor|2010-06-19|log4j 1.2.17 release                              |
|49481|New|Maj|2010-06-21|Log4j stops writting to file, and then causes serv|
|49489|New|Enh|2010-06-22|Ability to filter on several loggers              |
|49563|New|Min|2010-07-06|New SMTPProtocol and SMTPPort not recognized      |
|49571|New|Enh|2010-07-08|refreshing log4j - reconfigurable from log4j.prope|
|49592|New|Cri|2010-07-14|477 All Attributes Not Set                        |
|49597|New|Min|2010-07-15|The log4j.dtd is to restrictive                   |
|49693|New|Cri|2010-08-03|Intermittently Log4j fails to bind with log file  |
|49797|New|Enh|2010-08-22|AsyncAppenders Enchancement                       |
|49852|New|Enh|2010-08-31|Allow log files to rollover at any specified time |
|49853|New|Enh|2010-08-31|Adding loggers to the configuration               |
|49854|New|Nor|2010-08-31|Documentation                                     |
|49899|New|Nor|2010-09-08|PatternLayout and EnhancedPatternLayout issues wit|
|49920|New|Maj|2010-09-13|DailyRollingFileAppender.rollOver() might leave su|
|49932|New|Nor|2010-09-14|Additional OSGI/BND configuration elements        |
|50085|New|Maj|2010-10-13|SyslogAppender does not split stack traces correct|
|50164|New|Nor|2010-10-27|getAppender method in Logger class doesn't return |
|50166|New|Nor|2010-10-27|DailyRollingFileAppender and FileAppender fail to |
|50188|New|Nor|2010-10-31|Update site content to Apache Branding Requirement|
|50213|New|Nor|2010-11-04|Category callAppenders synchronization causes java|
|50225|New|Nor|2010-11-06|Filesystem placeholder not working with PropertyCo|
|50226|New|Nor|2010-11-06|Problem with placeholders and PropertyConfigurator|
|50238|New|Cri|2010-11-09|wrong log levels logged with the serialized Loggin|
|50323|New|Nor|2010-11-23|Vulnerability in NTEventLogAppender               |
|50366|New|Enh|2010-11-29|JDBCAppender Enhancement                          |
|50369|New|Min|2010-11-29|missing comma in class header javadoc for Level   |
|50433|New|Maj|2010-12-08|Drag and Drop does not work anymore               |
|50445|New|Nor|2010-12-09|Color bar is higher than scrollabr                |
|50463|New|Nor|2010-12-13|AsyncAppender causing deadlock when dispatcher thr|
|50479|New|Nor|2010-12-15|[PATCH] JMSQueueAppender - Change message object t|
|50486|Opn|Maj|2010-12-16|Memoryleak - org.apache.log4j.helpers.ThreadLocalM|
|50614|New|Maj|2011-01-19|Lock in CallAppenders causing all Thread to wait f|
|50641|New|Cri|2011-01-24|"Too Many Open Files" while using RollingFileAppen|
|50776|New|Enh|2011-02-14|Support TCP in SyslogAppender                     |
|50800|New|Cri|2011-02-16|log4j 1.2.16 has duplicate import-package entries |
|50817|New|Nor|2011-02-22|The JDBCAppender can't insert log info like this:h|
|50830|New|Min|2011-02-25|NPE in ISO8601DateFormat.hashCode and toString    |
|50844|New|Nor|2011-02-28|DateFormat.getDateTimeInstance() is very expensive|
|50845|New|Enh|2011-03-01|Content Assist (Ctrl + Space) needed in log4j.prop|
|50856|New|Enh|2011-03-02|Allow ignoreTCL option to be set in log4jconfig.xm|
|50858|New|Nor|2011-03-02|Classloader leak when using Log4j in a webapp cont|
|50930|New|Nor|2011-03-14|org.apache.log4jPriority methods toString(), toInt|
|50931|New|Nor|2011-03-14|unclosed http                                     |
|51025|New|Nor|2011-04-05|PropertyConfigurator does not properly set up Erro|
|51047|New|Maj|2011-04-11|Move org.apache.log4j.Category to reentrant read/w|
|51048|New|Nor|2011-04-11|AsyncAppender.doAppend() does not need to be synch|
|51055|New|Nor|2011-04-13|Appender not working properly with Windows Server |
|51122|New|Enh|2011-04-26|Include option in throwable pattern converter to c|
|51152|New|Nor|2011-05-04|RollingFileAppender of companion/extras 1.1 contai|
|51164|New|Nor|2011-05-06|log4j should not dump errors to stdout on interrup|
|51227|New|Maj|2011-05-19|after deleting logs using trash button no more log|
|51279|New|Maj|2011-05-28|log4j.properties doesn't support environment varia|
|51347|New|Cri|2011-06-09|Filename and line number not display , Java versio|
|51361|New|Min|2011-06-13|Inheritance spelled "inheritence" in documentation|
|51438|New|Nor|2011-06-27|Pipe characters issue in log() method             |
|51538|New|Nor|2011-07-21|Chainsaw 2 - add password to JMSReceiverBeanInfo i|
|51578|New|Cri|2011-07-28|Javaw.exe - Application Error -- The memory could |
|51651|New|Nor|2011-08-11|Hook in before log4j starts, e.g. UnrecognizedElem|
|51672|New|Enh|2011-08-17|Queue Appender for logging                        |
|51721|New|Nor|2011-08-25|Log4j snapshots should be in the Apache Snapshot R|
|51783|New|Maj|2011-09-07|WriterAppender NullPointerException when calling c|
|51784|New|Enh|2011-09-08|logger adapter, delagate call to logging method   |
|51849|New|Maj|2011-09-20|LogManager and ipv6 address                       |
|51979|New|Reg|2011-10-06|Fix for bug 42087 introduces line truncating in sy|
|52014|New|Nor|2011-10-12|option to set encoding for console appender confli|
|52077|New|Nor|2011-10-24|Log entries are lost after rollover               |
|52094|New|Nor|2011-10-26|Add InputStream API to OptionConverter.selectAndCo|
|52095|New|Nor|2011-10-26|Inconsistent Javadoc comment in addAppender(Append|
|52133|New|Min|2011-11-04|Logging of configuration URLs/Paths on log4j confi|
|52141|New|Blk|2011-11-05|[STUCK] ExecuteThread...Blocked trying to get lock|
|52168|New|Nor|2011-11-10|change log4j property file at runtime cause an emp|
|52392|New|Cri|2011-12-28|Issue with DailyRollingFileAppender               |
|52401|New|Blk|2011-12-30|Appender threshold set causes no logs to be writte|
|52424|New|Trv|2012-01-05|Misspelled word in FAQ                            |
|52463|New|Enh|2012-01-13|log4j-extras: Configure thread priority of asynchr|
|52490|New|Nor|2012-01-19|facelets.viewhandler logger using incorrect config|
+-----+---+---+----------+--------------------------------------------------+
| Total  236 bugs                                                           |
+---------------------------------------------------------------------------+

Gmane