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

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


    from 7f7d541a3a Make LowLevelLogUtil use StatusLogger once available
     new 538e5f5ccc Refactor API initialization into common LoggingSystem class
     new d07a4492c7 Make ServiceRegistry::getServices reentrant
     new f556d8f116 Clean up casts
     new 3b281d4d5c Refactor eager static caching of ThreadContext config
     new bd22a6e444 Use parameterized log messages
     new 6d581f1ede Merge pull request #1136 from jvz/logging-system

The 12407 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/logging/log4j/TestProvider.java     |   2 +-
 .../log4j/ThreadContextInheritanceTest.java        |  13 +-
 .../log4j/spi/DefaultThreadContextMapTest.java     |  23 +-
 .../java/org/apache/logging/log4j/LogManager.java  |  99 +-----
 .../org/apache/logging/log4j/ThreadContext.java    |  33 +-
 .../CopyOnWriteSortedArrayThreadContextMap.java    |  62 ++--
 .../logging/log4j/spi/DefaultThreadContextMap.java |  37 +--
 .../GarbageFreeSortedArrayThreadContextMap.java    |  68 ++--
 .../apache/logging/log4j/spi/LoggingSystem.java    | 363 +++++++++++++++++++++
 .../logging/log4j/spi/ThreadContextMapFactory.java | 134 --------
 .../org/apache/logging/log4j/util/Activator.java   |  79 ++---
 .../org/apache/logging/log4j/util/LazyInt.java     |  52 ---
 .../apache/logging/log4j/util/ProviderUtil.java    | 144 --------
 .../apache/logging/log4j/util/ServiceRegistry.java |  47 ++-
 .../apache/logging/log4j/core/LoggerContext.java   |   4 +-
 .../logging/log4j/core/impl/Log4jProvider.java     |   2 +-
 .../apache/logging/log4j/core/osgi/Activator.java  |   3 -
 .../CopyOnWriteOpenHashMapThreadContextMap.java    |   4 +-
 .../GarbageFreeOpenHashMapThreadContextMap.java    |   9 +-
 .../apache/logging/log4j/tojul/JULProvider.java    |   2 +-
 .../org/apache/logging/slf4j/SLF4JProvider.java    |   2 +-
 src/site/asciidoc/manual/thread-context.adoc       |   6 +-
 22 files changed, 541 insertions(+), 647 deletions(-)
 create mode 100644 
log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggingSystem.java
 delete mode 100644 
log4j-api/src/main/java/org/apache/logging/log4j/spi/ThreadContextMapFactory.java
 delete mode 100644 
log4j-api/src/main/java/org/apache/logging/log4j/util/LazyInt.java
 delete mode 100644 
log4j-api/src/main/java/org/apache/logging/log4j/util/ProviderUtil.java

Reply via email to