Skip to content

Commit 7077822

Browse files
committed
tiny improvments
1 parent 2143f84 commit 7077822

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/site/antora/modules/ROOT/pages/manual/architecture.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,17 @@ Appender -[#green,thickness=6]-> AbstractManager
162162
@enduml
163163
....
164164
165-
At a really high level,
165+
At a high level,
166166
167167
* A <<LoggerContext>>, the composition anchor, gets created in combination with a <<Configuration>>.
168-
Both can be created either directly (i.e., programmatically) or indirectly at first interaction with Log4j.
168+
Both can be created directly (i.e., programmatically) or indirectly at first interaction with Log4j.
169169
* `LoggerContext` creates <<Logger>>s that users interact with for logging purposes.
170170
* <<Appender>> delivers a link:../javadoc/log4j-core/org/apache/logging/log4j/core/LogEvent.html[`LogEvent`] to a target (file, socket, database, etc.) and typically uses a <<Layout>> to encode log events and an <<AbstractManager>> to handle the lifecycle of the target resource.
171-
* <<LoggerConfig>> encapsulates configuration for a `Logger`, as `AppenderControl` and `AppenderRef` for ``Appender``s.
171+
* <<LoggerConfig>> encapsulates configuration for a `Logger,` as `AppenderControl` and `AppenderRef` for ``Appender``s.
172172
* <<Configuration>> is equipped with <<StrSubstitutor>> to allow property substitution in `String`-typed values.
173173
* A typical `log()` call triggers a chain of invocations through classes `Logger`, `LoggerConfig`, `AppenderControl`, `Appender`, and `AbstractManager` in order – this is depicted using green arrows in xref:architecture-diagram[xrefstyle=short].
174174
175-
Following sections examine this interplay in detail.
175+
The following sections examine this interplay in detail.
176176
177177
[#LoggerContext]
178178
== `LoggerContext`

0 commit comments

Comments
 (0)