Repository: logging-log4j2 Updated Branches: refs/heads/release-2.x e4d9b0d65 -> 326d06319
LOG4J2-2273 Fix typo in documentation for custom configuration Closes #155 (cherry picked from commit c8261a5) Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/551cbd19 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/551cbd19 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/551cbd19 Branch: refs/heads/release-2.x Commit: 551cbd19a20dd51517fa61069f36107d4e4f6716 Parents: e4d9b0d Author: Bruno P. Kinoshita <ki...@users.noreply.github.com> Authored: Tue Feb 27 12:11:43 2018 +0900 Committer: rpopma <rpo...@apache.org> Committed: Tue Feb 27 12:40:42 2018 +0900 ---------------------------------------------------------------------- src/site/xdoc/manual/customconfig.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/551cbd19/src/site/xdoc/manual/customconfig.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/manual/customconfig.xml b/src/site/xdoc/manual/customconfig.xml index 8b1b8bd..e57af39 100644 --- a/src/site/xdoc/manual/customconfig.xml +++ b/src/site/xdoc/manual/customconfig.xml @@ -210,7 +210,7 @@ builder.add( builder.newLogger( "TestLogger", Level.DEBUG ) builder.add( builder.newRootLogger( Level.DEBUG ) .add( builder.newAppenderRef( "rolling" ) ) ); -LoggerContext ctx = Configurator.intitialize(builder.build()); +LoggerContext ctx = Configurator.initialize(builder.build()); ]]></pre> </subsection>