This is an automated email from the ASF dual-hosted git repository.
klund pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.
from 2c3fd5b GEODE-6143: Removing PowerMock from
BackupFileCopierIntegrationTest (#2955)
add a53c28a GEODE-6122: Make log4j core optional (#2944)
No new revisions were added by this update.
Summary of changes:
.../GfshStartLocatorLogAcceptanceTest.java | 2 +-
.../org/apache/geode/annotations/TestingOnly.java | 2 +-
.../LoggingWithReconnectDistributedTest.java | 2 +-
.../logging/BannerLoggingIntegrationTest.java | 3 +-
.../logging/ConfigurationInfoIntegrationTest.java | 7 -
.../logging/ConfigurationIntegrationTest.java | 10 +-
.../logging/FileSystemCanaryIntegrationTest.java | 46 +++---
.../LoggingWithLocatorLauncherIntegrationTest.java | 2 +-
.../LoggingWithServerLauncherIntegrationTest.java | 2 +-
...StartupConfigurationLoggingIntegrationTest.java | 3 +-
...gurationWithLogLevelChangesIntegrationTest.java | 28 ++--
...edSystemWithLogLevelChangesIntegrationTest.java | 22 +--
.../logging/log4j/FastLoggerIntegrationTest.java | 10 +-
...FastLoggerWithDefaultConfigIntegrationTest.java | 4 +-
...gServiceWithCustomLogConfigIntegrationTest.java | 4 +-
.../apache/geode/codeAnalysis/excludedClasses.txt | 6 +-
.../admin/internal/AdminDistributedSystemImpl.java | 4 +-
.../apache/geode/internal/VersionDescription.java | 4 +-
.../geode/internal/{ => logging}/Banner.java | 89 +++++++-----
.../geode/internal/logging/Configuration.java | 137 ++++++------------
.../geode/internal/logging/ConfigurationInfo.java | 36 +----
...gFileDetails.java => LogLevelUpdateOccurs.java} | 24 ++--
...onfigListener.java => LogLevelUpdateScope.java} | 11 +-
.../geode/internal/logging/LogWriterLevel.java | 4 +-
.../geode/internal/logging/LoggingSession.java | 3 +-
.../geode/internal/logging/NullProviderAgent.java | 13 --
.../geode/internal/logging/ProviderAgent.java | 44 +++++-
.../internal/logging/ProviderAgentLoader.java | 157 +++++++++++++++++++++
.../geode/internal/logging/log4j/Log4jAgent.java | 20 ++-
.../geode/management/internal/cli/shell/Gfsh.java | 6 +-
.../java/org/apache/geode/internal/BannerTest.java | 3 +-
.../geode/internal/logging/ConfigurationTest.java | 73 ----------
.../geode/internal/logging/LoggingSessionTest.java | 2 +-
.../internal/logging/NullProviderAgentTest.java | 25 ++--
.../internal/logging/ProviderAgentLoaderTest.java | 131 +++++++++++++++++
.../internal/util/ArgumentRedactorJUnitTest.java | 4 +-
.../internal/logging/TestLogWriterFactory.java | 3 +-
37 files changed, 575 insertions(+), 371 deletions(-)
copy
geode-junit/src/test/java/org/apache/geode/test/util/ResourceUtilsIntegrationTest.java
=>
geode-core/src/integrationTest/java/org/apache/geode/internal/logging/FileSystemCanaryIntegrationTest.java
(53%)
rename geode-core/src/main/java/org/apache/geode/internal/{ =>
logging}/Banner.java (80%)
copy
geode-core/src/main/java/org/apache/geode/internal/logging/{LogFileDetails.java
=> LogLevelUpdateOccurs.java} (66%)
copy
geode-core/src/main/java/org/apache/geode/internal/logging/{LogConfigListener.java
=> LogLevelUpdateScope.java} (76%)
create mode 100644
geode-core/src/main/java/org/apache/geode/internal/logging/ProviderAgentLoader.java
copy
geode-dunit/src/integrationTest/java/org/apache/geode/test/dunit/examples/BeforeClassExampleTest.java
=>
geode-core/src/test/java/org/apache/geode/internal/logging/NullProviderAgentTest.java
(64%)
create mode 100644
geode-core/src/test/java/org/apache/geode/internal/logging/ProviderAgentLoaderTest.java