You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2021/04/03 10:45:52 UTC

[logging-log4j2] branch LOG4J2-3004 updated (74d0b56 -> cdadeae)

This is an automated email from the ASF dual-hosted git repository.

vy pushed a change to branch LOG4J2-3004
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git.


 discard 74d0b56  LOG4J2-3004 Add plugin support to JsonTemplateLayout.
     add 0ee8e20  LOG4J2-3054: BasicContextSelector takes the default context into account
     add c217cd5  LOG4J2-2940: Context selectors are aware of ClassLoader dependency
     add cefa593  LOG4J2-2940: Reduce StackWalker interactions accessing an slf4j logger instance
     add 12bd5bf  LOG4J2-2940: Implement BasicAsyncLoggerContextSelector
     add 5b34274  BasicAsyncLoggerContextSelector documentation
     add e60ec4b  Add convenience comment.
     add 12bca7b  Update some dependencies.
     add cfc1606  Update some dependencies.
     add 950b55d  Update org.liquibase:liquibase-core 3.5.3 -> 3.5.5.
     add cdadeae  LOG4J2-3004 Add plugin support to JsonTemplateLayout.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (74d0b56)
            \
             N -- N -- N   refs/heads/LOG4J2-3004 (cdadeae)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../apache/logging/log4j/util/StackLocator.java    |  15 ++-
 .../log4j/simple/SimpleLoggerContextFactory.java   |   5 +
 .../logging/log4j/spi/LoggerContextFactory.java    |  13 +++
 .../apache/logging/log4j/util/StackLocator.java    |  12 ++-
 .../logging/log4j/util/StackLocatorUtil.java       |  20 +++-
 .../logging/log4j/TestLoggerContextFactory.java    |   5 +
 .../BasicAsyncLoggerContextSelector.java}          |  46 +++++----
 .../log4j/core/impl/Log4jContextFactory.java       |   5 +
 .../log4j/core/selector/BasicContextSelector.java  |  13 ++-
 .../core/selector/ClassLoaderContextSelector.java  |   6 ++
 .../log4j/core/selector/ContextSelector.java       |  12 ++-
 .../log4j/core/selector/CoreContextSelectors.java  |   8 +-
 .../log4j/core/selector/JndiContextSelector.java   |   5 +
 .../core/async/AsyncLoggerContextSelectorTest.java |   5 +
 .../AsyncLoggerCustomSelectorLocationTest.java     |   5 +
 .../logging/log4j/core/async/AsyncLoggerTest.java  |   2 +
 .../async/BasicAsyncLoggerContextSelectorTest.java | 107 +++++++++++++++++++++
 .../core/pattern/MessageJansiConverterTest.java    |   1 +
 .../core/selector/BasicContextSelectorTest.java    |  34 +++----
 .../org/apache/logging/log4j/jcl/LogAdapter.java   |   5 +-
 .../core/appender/db/jpa/JpaDatabaseManager.java   |  48 ++++-----
 .../log4j/jpl/Log4jSystemLoggerAdapter.java        |   5 +-
 .../logging/log4j/jul/AbstractLoggerAdapter.java   |   5 +-
 .../apache/logging/slf4j/Log4jLoggerFactory.java   |   8 +-
 .../apache/logging/slf4j/Log4jLoggerFactory.java   |   8 +-
 .../logging/slf4j/SLF4JLoggerContextFactory.java   |   8 +-
 pom.xml                                            |  15 +--
 src/changes/changes.xml                            |  39 +++++++-
 src/site/xdoc/manual/async.xml                     |  10 +-
 src/site/xdoc/manual/configuration.xml.vm          |   1 +
 30 files changed, 376 insertions(+), 95 deletions(-)
 copy log4j-core/src/main/java/org/apache/logging/log4j/core/{selector/BasicContextSelector.java => async/BasicAsyncLoggerContextSelector.java} (61%)
 create mode 100644 log4j-core/src/test/java/org/apache/logging/log4j/core/async/BasicAsyncLoggerContextSelectorTest.java
 copy log4j-jul/src/test/java/org/apache/logging/log4j/jul/AsyncLoggerThreadsTest.java => log4j-core/src/test/java/org/apache/logging/log4j/core/selector/BasicContextSelectorTest.java (56%)