You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Serilog.Sinks.Async [](https://ci.appveyor.com/project/serilog/serilog-sinks-async)[](https://www.nuget.org/packages/Serilog.Sinks.Async)[](https://gitter.im/serilog/serilog)
An asynchronous wrapper for other [Serilog](https://serilog.net) sinks. Use this sink to reduce the overhead of logging calls by delegating work to a background thread. This is especially suited to non-batching sinks like the [File](https://github.com/serilog/serilog-sinks-file) and [RollingFile](https://github.com/serilog/serilog-sinks-rollingfile) sinks that may be affected by I/O bottlenecks.
4
4
@@ -8,8 +8,8 @@ An asynchronous wrapper for other [Serilog](https://serilog.net) sinks. Use this
8
8
9
9
Install from [NuGet](https://nuget.org/packages/serilog.sinks.async):
10
10
11
-
```powershell
12
-
Install-Package Serilog.Sinks.Async
11
+
```sh
12
+
dotnet add package Serilog.Sinks.Async
13
13
```
14
14
15
15
Assuming you have already installed the target sink, such as the file sink, move the wrapped sink's configuration within a `WriteTo.Async()` statement:
0 commit comments