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

jasonhuynh pushed a commit to branch support/1.13
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 3b7e5968ec78fabcd0fa07227db229ddde77e8b4
Author: Jason Huynh <[email protected]>
AuthorDate: Tue Jun 2 12:47:47 2020 -0700

    GEODE-8203: Removed camel casing for system property (#5197)
    
    (cherry picked from commit 371ee4e052c373d3a60cb2e178ac2ddd3a358101)
---
 .../src/main/java/org/apache/geode/logging/internal/LoggingSession.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/geode-core/src/main/java/org/apache/geode/logging/internal/LoggingSession.java
 
b/geode-core/src/main/java/org/apache/geode/logging/internal/LoggingSession.java
index 3f56dc8..1af2974 100644
--- 
a/geode-core/src/main/java/org/apache/geode/logging/internal/LoggingSession.java
+++ 
b/geode-core/src/main/java/org/apache/geode/logging/internal/LoggingSession.java
@@ -36,7 +36,7 @@ import org.apache.geode.logging.internal.spi.LogFile;
 public class LoggingSession implements InternalSessionContext {
 
   static final boolean STANDARD_OUTPUT_ALWAYS_ON =
-      Boolean.valueOf(System.getProperty(GEMFIRE_PREFIX + 
"StandardOutputAlwaysOn", "false"));
+      Boolean.valueOf(System.getProperty(GEMFIRE_PREFIX + 
"standard-output-always-on", "false"));
 
   private static final Logger logger = LogService.getLogger();
 

Reply via email to