Repository: logging-log4j2 Updated Branches: refs/heads/master ddbd6aef2 -> adc1ea820
Format nits. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/adc1ea82 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/adc1ea82 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/adc1ea82 Branch: refs/heads/master Commit: adc1ea8201edb23deaf987b98aec035c1b5d2336 Parents: ddbd6ae Author: Gary Gregory <[email protected]> Authored: Tue Jan 23 21:35:00 2018 -0700 Committer: Gary Gregory <[email protected]> Committed: Tue Jan 23 21:35:00 2018 -0700 ---------------------------------------------------------------------- .../org/apache/logging/log4j/core/lookup/StrSubstitutor.java | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/adc1ea82/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/StrSubstitutor.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/StrSubstitutor.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/StrSubstitutor.java index 5fd9e44..405ca28 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/StrSubstitutor.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/StrSubstitutor.java @@ -166,26 +166,32 @@ public class StrSubstitutor implements ConfigurationAware { * Stores the escape character. */ private char escapeChar; + /** * Stores the variable prefix. */ private StrMatcher prefixMatcher; + /** * Stores the variable suffix. */ private StrMatcher suffixMatcher; + /** * Stores the default variable value delimiter */ private StrMatcher valueDelimiterMatcher; + /** * Variable resolution is delegated to an implementer of VariableResolver. */ private StrLookup variableResolver; + /** * The flag whether substitution in variable names is enabled. */ private boolean enableSubstitutionInVariables = true; + /** * The currently active Configuration for use by ConfigurationAware StrLookup implementations. */
