ignite-4496 Review all logging for sensitive data leak
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/43ab98be Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/43ab98be Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/43ab98be Branch: refs/heads/ignite-5075 Commit: 43ab98bedd2735f349b08ac02983fa0511aa4692 Parents: b7d8d1b Author: sboikov <[email protected]> Authored: Fri Jun 2 16:27:13 2017 +0300 Committer: sboikov <[email protected]> Committed: Fri Jun 2 16:27:13 2017 +0300 ---------------------------------------------------------------------- .../org/apache/ignite/internal/SensitiveInfoTestLoggerProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/43ab98be/modules/core/src/test/java/org/apache/ignite/internal/SensitiveInfoTestLoggerProxy.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/SensitiveInfoTestLoggerProxy.java b/modules/core/src/test/java/org/apache/ignite/internal/SensitiveInfoTestLoggerProxy.java index 89d3ce0..9cfe40d 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/SensitiveInfoTestLoggerProxy.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/SensitiveInfoTestLoggerProxy.java @@ -73,7 +73,7 @@ public class SensitiveInfoTestLoggerProxy implements IgniteLogger, LifecycleAwar private static final boolean logGridName = System.getProperty(IGNITE_LOG_GRID_NAME) != null; /** Test sensitive mode. */ - public static final boolean TEST_SENSITIVE = true;//System.getProperty(IGNITE_LOG_TEST_SENSITIVE) != null; + public static final boolean TEST_SENSITIVE = System.getProperty(IGNITE_LOG_TEST_SENSITIVE) != null; /** Prefix for all suspicious sensitive data. */ private static final String SENSITIVE_PREFIX = "SENSITIVE> ";
