Skip to content

Commit 4bda7f8

Browse files
committed
Merge branch 'dev'
2 parents 548d9df + 81ae41c commit 4bda7f8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ var log = new LoggerConfiguration()
126126
columnOptions: opts,
127127
appConfiguration: appSettings
128128
).CreateLogger();
129-
.CreateLogger();
130129
```
131130

132131
### Code + _System.Configuration_
@@ -215,7 +214,7 @@ Ideally the `SerilogWriter` role would be restricted to the log table only, and
215214

216215
```
217216
GRANT SELECT ON [dbo].[SecuredLog] TO [SerilogWriter];
218-
GRANT SELECT ON [dbo].[SecuredLog] TO [SerilogWriter];
217+
GRANT INSERT ON [dbo].[SecuredLog] TO [SerilogWriter];
219218
```
220219

221220
There are many possible variations. For example, you could also create a logging-specific schema and restrict access that way.
@@ -546,12 +545,12 @@ Keys and values are case-sensitive. Case must match **_exactly_** as shown below
546545
<remove Name="Properties"/>
547546
</RemoveStandardColumns>
548547
<Columns>
549-
<add ColumnName="EventType" DataType="int"/>
550-
<add ColumnName="Release"
551-
DataType="varchar"
552-
DataLength="64"
553-
AllowNull="true"
554-
NonClusteredIndex="false"/>
548+
<add columnName="EventType" DataType="int"/>
549+
<add columnName="Release"
550+
dataType="varchar"
551+
dataLength="64"
552+
allowNull="true"
553+
nonClusteredIndex="false"/>
555554
</Columns>
556555
<Exception ColumnName="Ex" DataLength="512"/>
557556
<Id NonClusteredIndex="true"/>

0 commit comments

Comments
 (0)