Skip to content

Commit d6bf56f

Browse files
committed
Added note in parameter documentation that the default is 'dbo'.
1 parent 28e5969 commit d6bf56f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Serilog.Sinks.MSSqlServer/LoggerConfigurationMSSqlServerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static class LoggerConfigurationMSSqlServerExtensions
3838
/// <param name="loggerConfiguration">The logger configuration.</param>
3939
/// <param name="connectionString">The connection string to the database where to store the events.</param>
4040
/// <param name="tableName">Name of the table to store the events in.</param>
41-
/// <param name="schemaName">Name of the schema for the table to store the data in.</param>
41+
/// <param name="schemaName">Name of the schema for the table to store the data in. The default is 'dbo'.</param>
4242
/// <param name="restrictedToMinimumLevel">The minimum log event level required in order to write an event to the sink.</param>
4343
/// <param name="batchPostingLimit">The maximum number of events to post in a single batch.</param>
4444
/// <param name="period">The time to wait between checking for event batches.</param>

src/Serilog.Sinks.MSSqlServer/Sinks/MSSqlServer/MSSqlServerSink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public class MSSqlServerSink : PeriodicBatchingSink
6161
/// </summary>
6262
/// <param name="connectionString">Connection string to access the database.</param>
6363
/// <param name="tableName">Name of the table to store the data in.</param>
64-
/// <param name="schemaName">Name of the schema for the table to store the data in.</param>
64+
/// <param name="schemaName">Name of the schema for the table to store the data in. The default is 'dbo'.</param>
6565
/// <param name="batchPostingLimit">The maximum number of events to post in a single batch.</param>
6666
/// <param name="period">The time to wait between checking for event batches.</param>
6767
/// <param name="formatProvider">Supplies culture-specific formatting information, or null.</param>

0 commit comments

Comments
 (0)