[jira] [Commented] (LOG4J2-85) Replace ThreadContext.push(String msg) with push(String msg, Object args...)

2012-09-24 Thread Joern Huxhorn (JIRA)
[ https://issues.apache.org/jira/browse/LOG4J2-85?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13461785#comment-13461785 ] Joern Huxhorn commented on LOG4J2-85: - The evaluation/formatting of the message should

[jira] [Commented] (LOG4J2-83) Please provide means to disable MDC functionality on a global level.

2012-09-24 Thread Ralph Goers (JIRA)
[ https://issues.apache.org/jira/browse/LOG4J2-83?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13461835#comment-13461835 ] Ralph Goers commented on LOG4J2-83: --- I am not convinced that completely disabling the MDC

[jira] [Commented] (LOG4J2-84) Please provide means to disable NDC functionality on a global level.

2012-09-24 Thread Ralph Goers (JIRA)
[ https://issues.apache.org/jira/browse/LOG4J2-84?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13461838#comment-13461838 ] Ralph Goers commented on LOG4J2-84: --- I am not convinced that completely disabling the NDC

[jira] [Commented] (LOG4J2-85) Replace ThreadContext.push(String msg) with push(String msg, Object args...)

2012-09-24 Thread Ralph Goers (JIRA)
[ https://issues.apache.org/jira/browse/LOG4J2-85?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13461839#comment-13461839 ] Ralph Goers commented on LOG4J2-85: --- OK - So push(String msg, Object args...) is just a

[jira] [Closed] (LOG4J2-90) docs - tip for -server

2012-09-24 Thread Tushar (JIRA)
[ https://issues.apache.org/jira/browse/LOG4J2-90?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tushar closed LOG4J2-90. docs - tip for -server -- Key: LOG4J2-90 URL:

Re: [ANNOUNCEMENT] Apache Logging log4j 2.0-beta1 released

2012-09-24 Thread Christian Grobmeier
Thanks! I have added it to the blog: https://blogs.apache.org/logging/entry/apache_log4j_2_0_beta1 Cheers! On Sat, Sep 22, 2012 at 7:39 AM, Ralph Goers ralph.go...@dslextreme.com wrote: The Apache Logging team is pleased to announce the Apache log4j 2.0-beta1 release! Apache log4j is a well

API names like org.apache.logging.log4j.Logger.catching(Throwable)

2012-09-24 Thread Gary Gregory
Hi All: I've started porting a project from 1.2.16 to 2.0. I find the Logger.catching() API name to be rather poor. I can't recall seeing APIs that say do-ing something. APIs usually just do. IMO, the fact that the API was can be called from a catch clause should not create the need to call the

Re: API names like org.apache.logging.log4j.Logger.catching(Throwable)

2012-09-24 Thread Ralph Goers
See http://docs.oracle.com/javase/6/docs/api/java/util/logging/Logger.html#throwing(java.lang.String, java.lang.String, java.lang.Throwable) as this is where these names originated from. Logback has variations on these at

Re: API names like org.apache.logging.log4j.Logger.catching(Throwable)

2012-09-24 Thread Gary Gregory
On Mon, Sep 24, 2012 at 6:06 PM, Ralph Goers ralph.go...@dslextreme.comwrote: See http://docs.oracle.com/javase/6/docs/api/java/util/logging/Logger.html#throwing(java.lang.String, java.lang.String, java.lang.Throwable) as this is where these names originated from. Logback has variations on

[jira] [Created] (LOG4J2-91) NoSuchMethodError: org.apache.log4j.Category.log(Ljava/lang/String;Lorg/apache/log4j/Priority;Ljava/lang/Object;Ljava/lang/Throwable;)V

2012-09-24 Thread Gary D. Gregory (JIRA)
Gary D. Gregory created LOG4J2-91: - Summary: NoSuchMethodError: org.apache.log4j.Category.log(Ljava/lang/String;Lorg/apache/log4j/Priority;Ljava/lang/Object;Ljava/lang/Throwable;)V Key: LOG4J2-91 URL:

[jira] [Commented] (LOG4J2-83) Please provide means to disable MDC functionality on a global level.

2012-09-24 Thread Ralph Goers (JIRA)
[ https://issues.apache.org/jira/browse/LOG4J2-83?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13462379#comment-13462379 ] Ralph Goers commented on LOG4J2-83: --- I have commit the change in revision 1389690 as

[jira] [Commented] (LOG4J2-84) Please provide means to disable NDC functionality on a global level.

2012-09-24 Thread Ralph Goers (JIRA)
[ https://issues.apache.org/jira/browse/LOG4J2-84?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13462380#comment-13462380 ] Ralph Goers commented on LOG4J2-84: --- I have commit the change in revision 1389690 as

Re: Logger and throwables

2012-09-24 Thread Gary Gregory
The issue is closed so I'll comment here. Over all, my port to 2.0 went well, aside from some 1.2 compat issue I JIRA'd. Let's make a difference between binary compat and source compat. BC is no problem, calling error(), info(), and so on with a Throwable is the same as with 1.2. For SC, since