We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37b036b + 26156d4 commit 1bd103bCopy full SHA for 1bd103b
src/Serilog.Sinks.MSSqlServer/Sinks/MSSqlServer/MSSqlServerSink.cs
@@ -174,7 +174,7 @@ DataTable CreateDataTable()
174
eventsTable.Columns.Add(new DataColumn
175
{
176
DataType = _columnOptions.Level.StoreAsEnum ? typeof(byte) : typeof(string),
177
- MaxLength = _columnOptions.Level.StoreAsEnum ? 0 : 128,
+ MaxLength = _columnOptions.Level.StoreAsEnum ? -1 : 128,
178
ColumnName = _columnOptions.Level.ColumnName ?? StandardColumn.Level.ToString()
179
});
180
break;
0 commit comments