Skip to content

Commit c5b6d20

Browse files
committed
2 parents 8d0ac31 + 710330d commit c5b6d20

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Serilog.Sinks.Async
2-
An Async Serilog sink
1+
# Serilog.Sinks.Async [![Build status](https://ci.appveyor.com/api/projects/status/rostpmo2gq08ecag?svg=true)](https://ci.appveyor.com/project/mindkin/serilog-sinks-async)
2+
An async Serilog sink
33

4-
Use this buffered async delegating sink to reduce the time it takes for your logging thread to write to your sink.
5-
This sink can work with any `IEventLogSink`. Especially suited to sinks that are either slow to write or wait on I/O (like databases, files systems etc).
4+
Use this buffered async delegating sink to reduce the time it takes to write your log events to a sink.
5+
This sink can work with any `IEventLogSink`. Especially suited to sinks that are either slow to write or wait on I/O (like databases, files systems etc). This sink uses a separate thread pool thread to execute your sink, freeing up the calling thread to run in your app.
66

77
Install from NuGet:
88

@@ -30,4 +30,4 @@ Log.Logger = new LoggerConfiguration()
3030
.WriteTo.Async(x => x.Sink(new YourSink), 500) //Max number of logevents to buffer in memory
3131
// Other logger configurationg
3232
.CreateLogger()
33-
```
33+
```

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ environment:
1717
test_assemblies: Serilog.Sinks.Async.IntTests\bin\$env:buildconfig\Serilog.Sinks.Async.IntTests.dll
1818
test_category: Integration
1919
test_settings:
20-
- test_type: Perf.Testing
20+
- test_type: Perf.Testing
2121
test_assemblies: Serilog.Sinks.Async.IntTests\bin\$env:buildconfig\Serilog.Sinks.Async.IntTests.dll
2222
test_category: Integration.Perf
2323
test_settings:

0 commit comments

Comments
 (0)