diff --git a/HowToUse.md b/HowToUse.md index f500f71..b7572c8 100644 --- a/HowToUse.md +++ b/HowToUse.md @@ -45,7 +45,7 @@ The project can be found on [nuget](https://www.nuget.org/packages/Serilog.Sinks |formatProvider|The `IFormatProvider` to use. Supplies culture-specific formatting information. Check https://docs.microsoft.com/en-us/dotnet/api/system.iformatprovider?view=netframework-4.8.|`new CultureInfo("de-DE")`|`null`| |batchSizeLimit|The maximum number of events to include in a single batch.|`batchSizeLimit: 40`|`30`| |queueLimit|Maximum number of events in the queue.|`queueLimit: 3000`|`int.MaxValue` or `2147483647`| -|levelSwitch|Maximum number of events in the queue.|`levelSwitch: new LoggingLevelSwitch()`|`null`| +|levelSwitch|Provides runtime control over minimum log level.|`levelSwitch: new LoggingLevelSwitch()`|`null`| |useCopy|Enables the copy command to allow batch inserting instead of multiple `INSERT` commands.|`useCopy: true`|`true`| |schemaName|The schema in which the table should be created.|`schemaName: "Logs"`|`string.Empty` which defaults to the PostgreSQL `public` schema.| |needAutoCreateTable|Specifies whether the table should be auto-created if it does not already exist or not.|`needAutoCreateTable: true`|`false`|