Correct plugin name of ExtendedWhitespaceThrowablePatternConverter

Previously, it had the same plugin name as
WhitespaceThrowablePatternConverter which meant that only one of the
two plugins was available and the other’s converter keys didn’t work.

Closes gh-4337
This commit is contained in:
Andy Wilkinson 2015-10-29 14:31:18 +00:00
parent c98d3208b2
commit 85d5766d54
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ import org.apache.logging.log4j.core.pattern.ThrowablePatternConverter;
* @author Phillip Webb
* @since 1.3.0
*/
@Plugin(name = "WhitespaceThrowablePatternConverter", category = PatternConverter.CATEGORY)
@Plugin(name = "ExtendedWhitespaceThrowablePatternConverter", category = PatternConverter.CATEGORY)
@ConverterKeys({ "xwEx", "xwThrowable", "xwException" })
public final class ExtendedWhitespaceThrowablePatternConverter
extends ThrowablePatternConverter {