Skip to content

Commit 13fa2a8

Browse files
authored
Merge pull request #162 from serilog-contrib/dev
merge latest
2 parents b24093e + 117a3e0 commit 13fa2a8

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ var log = new LoggerConfiguration()
1919
| restrictedToMinimumLevel | The minimum log event level required in order to write an event to the sink. | Verbose |
2020
| formatProvider | Culture-specific formatting information | |
2121
| storageTableName | Table name that log entries will be written to | LogEvent |
22-
| writeInBatches | Use a periodic batching sink, as opposed to a synchronous one-at-a-time sink | true |
2322
| batchPostingLimit | The maximum number of events to post in a single batch | 100 |
2423
| period | The time to wait between checking for event batches | 0:0:2 |
2524
| keyGenerator | The key generator used to create the PartitionKey and the RowKey for each log entry | DefaultKeyGenerator |

samples/SampleConsoleApplication/SampleConsoleApplication.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<ItemGroup>
2424
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
2525
<PackageReference Include="Serilog.Extensions.Hosting" Version="8.0.0" />
26-
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.0" />
27-
<PackageReference Include="Serilog.sinks.Console" Version="5.0.1" />
26+
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.1" />
27+
<PackageReference Include="Serilog.sinks.Console" Version="6.0.0" />
2828
</ItemGroup>
2929

3030
<ItemGroup>

test/Serilog.Sinks.AzureTableStorage.Tests/Serilog.Sinks.AzureTableStorage.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<ItemGroup>
1616
<PackageReference Include="FluentAssertions" Version="6.12.0" />
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
18+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2121
</PackageReference>
22-
<PackageReference Include="xunit" Version="2.8.1" />
22+
<PackageReference Include="xunit" Version="2.9.0" />
2323
</ItemGroup>
2424

2525
</Project>

0 commit comments

Comments
 (0)