You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -21,7 +21,7 @@ Configuration is read from the `Serilog` section.
21
21
}
22
22
```
23
23
24
-
This example relies on the _Serilog.Sinks.Literate_, _Serilog.Sinks.File_, _Serilog.Enrichers.Environment_, _Serilog.Settings.Configuration_ and _Serilog.Enrichers.Thread_ packages also being installed.
24
+
This example relies on the _Serilog.Sinks.Console_, _Serilog.Sinks.File_, _Serilog.Enrichers.Environment_, _Serilog.Settings.Configuration_ and _Serilog.Enrichers.Thread_ packages also being installed.
25
25
26
26
After installing this package, use `ReadFrom.Configuration()` and pass an `IConfiguration` object.
27
27
@@ -46,7 +46,7 @@ public class Program
46
46
The `WriteTo` and `Enrich` sections support the same syntax, for example the following is valid if no arguments are needed by the sinks:
47
47
48
48
```json
49
-
"WriteTo": ["LiterateConsole", "DiagnosticTrace"]
49
+
"WriteTo": ["Console", "DiagnosticTrace"]
50
50
```
51
51
52
52
Or alternatively, the long-form (`"Name":` ...) syntax from the first example can be used when arguments need to be supplied.
0 commit comments