Skip to content

Documentation Update for Logger Layout Pattern Precision Example #3744

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: 2.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/site/antora/modules/ROOT/pages/manual/pattern-layout.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,10 @@ See the table below for abbreviation examples:
|org.apache.commons.Foo
|o.a.c.Foo

|%c{2.}
|org.apache.commons.Foo
|or.ap.co.Foo

|%c{1.1.\~.~}
|org.apache.commons.test.Foo
|o.a.~.~.Foo
Expand All @@ -964,17 +968,29 @@ See the table below for abbreviation examples:
|org.apache.commons.test.Foo
|o.a.c.test.Foo

|%c{3.2.1.*}
|org.apache.commons.test.Foo
|org.ap.c.test.Foo

|%c{1.2.*}
|org.apache.commons.test.Foo
|o.ap.commons.test.Foo

|%c{1.2*}
|org.apache.commons.test.Foo
|o.a.c.test.Foo

|%c{1.3.*}
|org.apache.commons.test.Foo
|o.apa.commons.test.Foo

|%c{1.3*}
|org.apache.commons.test.Foo
|o.a.commons.test.Foo

|%c{1.8.*}
|org.apache.commons.test.Foo
|org.apache.commons.test.Foo
|o.apache.commons.test.Foo
|===

[#converter-marker]
Expand Down
Loading