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
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -186,7 +186,7 @@ You can also declare `LoggingLevelSwitch`-es in custom section and reference the
186
186
187
187
Level updates to switches are also respected for a dynamic update.
188
188
189
-
Since version 4.0.0, both declared switches (i.e. `Serilog:LevelSwitches` section) and minimum level override switches (i.e. `Serilog:MinimumLevel:Override` section) are exposed through a callback on the reader options so that a reference can be kept:
189
+
Since version 7.0.0, both declared switches (i.e. `Serilog:LevelSwitches` section) and minimum level override switches (i.e. `Serilog:MinimumLevel:Override` section) are exposed through a callback on the reader options so that a reference can be kept:
@@ -275,7 +275,7 @@ Using this package you can also declare `LoggingFilterSwitch`-es in custom secti
275
275
276
276
Level updates to switches are also respected for a dynamic update.
277
277
278
-
Since version 4.0.0, filter switches are exposed through a callback on the reader options so that a reference can be kept:
278
+
Since version 7.0.0, filter switches are exposed through a callback on the reader options so that a reference can be kept:
279
279
280
280
```csharp
281
281
var filterSwitches = new Dictionary<string, ILoggingFilterSwitch>();
@@ -317,7 +317,7 @@ Some Serilog packages require a reference to a logger configuration object. The
317
317
318
318
When the configuration specifies a discrete value for a parameter (such as a string literal), the package will attempt to convert that value to the target method's declared CLR type of the parameter. Additional explicit handling is provided for parsing strings to `Uri`, `TimeSpan`, `enum`, arrays and custom collections.
319
319
320
-
Since version 4.0.0, conversion will use the invariant culture (`CultureInfo.InvariantCulture`) as long as the `ReadFrom.Configuration(IConfiguration configuration, ConfigurationReaderOptions options)` method is used. Obsolete methods use the current culture to preserve backward compatibility.
320
+
Since version 7.0.0, conversion will use the invariant culture (`CultureInfo.InvariantCulture`) as long as the `ReadFrom.Configuration(IConfiguration configuration, ConfigurationReaderOptions options)` method is used. Obsolete methods use the current culture to preserve backward compatibility.
0 commit comments