Repository: logging-log4j2 Updated Branches: refs/heads/master 044777340 -> 9b6935a70
Fix for Javadoc 8. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/9b6935a7 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/9b6935a7 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/9b6935a7 Branch: refs/heads/master Commit: 9b6935a701c9940364f70602a667765ffc390cbf Parents: 0447773 Author: Gary Gregory <[email protected]> Authored: Sun Sep 28 20:40:11 2014 -0400 Committer: Gary Gregory <[email protected]> Committed: Sun Sep 28 20:40:11 2014 -0400 ---------------------------------------------------------------------- .../log4j/core/pattern/HighlightConverter.java | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/9b6935a7/log4j-core/src/main/java/org/apache/logging/log4j/core/pattern/HighlightConverter.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/pattern/HighlightConverter.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/pattern/HighlightConverter.java index 9784622..f33b228 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/pattern/HighlightConverter.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/pattern/HighlightConverter.java @@ -105,27 +105,31 @@ public final class HighlightConverter extends LogEventPatternConverter implement } /** - * Creates a level style map where values are ANSI escape sequences given configuration options in - * {@code option[1]}. - * <p/> + * Creates a level style map where values are ANSI escape sequences given configuration options in {@code option[1]} + * . + * <p> * The format of the option string in {@code option[1]} is: - * + * </p> + * * <pre> * Level1=Value, Level2=Value, ... * </pre> * + * <p> * For example: + * </p> * * <pre> * ERROR=red bold, WARN=yellow bold, INFO=green, ... * </pre> * + * <p> * You can use whitespace around the comma and equal sign. The names in values MUST come from the - * {@linkplain AnsiEscape} enum, case is - * normalized to upper-case internally. + * {@linkplain AnsiEscape} enum, case is normalized to upper-case internally. + * </p> * * @param options - * The second slot can optionally contain the style map. + * The second slot can optionally contain the style map. * @return a new map */ private static Map<Level, String> createLevelStyleMap(final String[] options) {
