Repository: logging-log4j2 Updated Branches: refs/heads/master 98538c434 -> 1a63d3793
[LOG4J2-1180] Logger cache does not account for message factory. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/1a63d379 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/1a63d379 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/1a63d379 Branch: refs/heads/master Commit: 1a63d3793ac446bb19a8f137967b927215351346 Parents: 98538c4 Author: ggregory <[email protected]> Authored: Mon Nov 2 07:55:08 2015 -0800 Committer: ggregory <[email protected]> Committed: Mon Nov 2 07:55:08 2015 -0800 ---------------------------------------------------------------------- .../java/org/apache/logging/log4j/spi/LoggerContextKey.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/1a63d379/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContextKey.java ---------------------------------------------------------------------- diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContextKey.java b/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContextKey.java index bff50ed..95859bd 100644 --- a/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContextKey.java +++ b/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContextKey.java @@ -19,6 +19,11 @@ package org.apache.logging.log4j.spi; import org.apache.logging.log4j.message.MessageFactory; +/** + * Creates keys used in maps for use in LoggerContext implementations. + * + * @since 2.5 + */ public class LoggerContextKey { public static String create(final String name) {
