You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2020/07/02 08:08:00 UTC

[logging-log4j2] branch master updated: #365 Remove extra curly opening bracket in docs.

This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new aa16cc4  #365 Remove extra curly opening bracket in docs.
aa16cc4 is described below

commit aa16cc4da3cabe395eba7269d0b437147bab0c3f
Author: Ignas Maslinskas <57...@users.noreply.github.com>
AuthorDate: Thu Jul 2 11:07:52 2020 +0300

    #365 Remove extra curly opening bracket in docs.
---
 src/site/asciidoc/manual/lookups.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/site/asciidoc/manual/lookups.adoc b/src/site/asciidoc/manual/lookups.adoc
index 06b6c6b..528644e 100644
--- a/src/site/asciidoc/manual/lookups.adoc
+++ b/src/site/asciidoc/manual/lookups.adoc
@@ -377,7 +377,7 @@ result of a nested lookup.
 ----
 <File name="Application" fileName="application.log">
   <PatternLayout>
-    <pattern>%d %p %c{1.} [%t] $${lower:{${spring:spring.application.name}} %m%n</pattern>
+    <pattern>%d %p %c{1.} [%t] $${lower:${spring:spring.application.name}} %m%n</pattern>
   </PatternLayout>
 </File>
 ----