Skip to content

Commit c343f5e

Browse files
committed
MB feedback
1 parent c70cc14 commit c343f5e

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

snooty.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,5 @@ kotlin-docs = "https://kotlinlang.org"
3636
serialization-version = "1.6.0"
3737
kotlinx-dt-version = "0.6.1"
3838
mongocrypt-version = "{+full-version+}"
39+
logbackVersion = "1.2.11"
40+
log4j2Version = "2.17.1"

source/logging-and-monitoring/logging.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ guide.
2222
Set Up a Logger
2323
---------------
2424

25-
The {+driver-short+} uses SLF4J to allow you to specify your logging framework of choice.
26-
For mroe information about SLF4J, see the `SLF4J documentation <https://www.slf4j.org/>`__.
25+
The {+driver-short+} uses Simple Logging Facade For Java (SLF4J) to allow you to specify
26+
your logging framework of choice. For more information about SLF4J, see the `SLF4J documentation
27+
<https://www.slf4j.org/>`__.
2728

2829
Setting up a logger is optional. To set up a logger, you must include the following in
2930
your project:
@@ -135,7 +136,7 @@ The following example shows how to set up a logger. Select the :guilabel:`Logbac
135136
.. note:: Default Log Level
136137

137138
The default log level of Log4J2 is ERROR. This means that running
138-
standard operations in the MongoDB Java driver will not produce output
139+
standard operations in the {+driver-short+} will not produce output
139140
from Log4J2 without configuration. To learn how to change your Log4J2
140141
logger's log level, see the
141142
:ref:`Configure Log Level <kotlin-sync-configure-log-level>` section of this page.
@@ -261,14 +262,14 @@ Logger Names
261262
Your logger uses logger names to help organize different logging events. Logger names
262263
are strings that form a hierarchy. A logger is an ancestor of another logger if its
263264
name followed by a ``"."`` is a prefix of the other logger's name. For example,
264-
``"grandparent"`` is an ancestor of ``"grandparent.parent"`` which is an ancestor of
265+
``"grandparent"`` is an ancestor of ``"grandparent.parent"``, which is an ancestor of
265266
``"grandparent.parent.child"``. A logger inherits the properties of its ancestor logger and
266-
can define its own.
267+
can also define its own properties.
267268

268269
The {+driver-short+} defines the following logger names to organize different logging events:
269270

270271
.. list-table::
271-
:widths: 25 75
272+
:widths: 40 60
272273
:header-rows: 1
273274

274275
* - Logger Name

0 commit comments

Comments
 (0)