Skip to content

Commit ded3d20

Browse files
committed
Fixed bulleted list formatting issue in logging docs.
1 parent ebbfde6 commit ded3d20

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Docs/reference/content/reference/driver/logging.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ You can configure logging using the [`LoggingSettings`]({{< apiref "T_MongoDB_Dr
2222

2323

2424
The following code example creates a MongoClient that logs debug messages to the console. To do so, the code performs the following steps:
25+
2526
- Creates a LoggerFactory, which specifies the logging destination and level
2627
- Creates a LoggingSettings object, passing the LoggerFactory object as a parameter to the constructor
2728
- Creates a MongoClient object, passing the LoggingSettings object as a parameter to the constructor
@@ -71,4 +72,4 @@ using var loggerFactory = LoggerFactory.Create(b =>
7172
var settings = MongoClientSettings.FromConnectionString("mongodb://localhost:27017");
7273
settings.LoggingSettings = new LoggingSettings(loggerFactory);
7374
var client = new MongoClient(settings);
74-
```
75+
```

0 commit comments

Comments
 (0)