Skip to content

Commit 50a27fb

Browse files
committed
Update README.md
1 parent 68dbcdf commit 50a27fb

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
# serilog-sinks-azuretablestorage
1+
### Serilog.Sinks.AzureTableStorage
22

33
[![Build status](https://ci.appveyor.com/api/projects/status/bb9v4y9dguyn7w9a/branch/master?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-azuretablestorage/branch/master)
44

5-
A Serilog sink that writes events to Azure Table Storage
5+
Writes to a table in [[Windows Azure Table Storage|http://www.windowsazure.com/en-us/develop/net/how-to-guides/table-services/]].
6+
7+
**Package** - [[Serilog.AzureTableStorage|http://nuget.org/packages/serilog.sinks.azuretablestorage]]
8+
| **Platforms** - .NET 4.5
9+
10+
```csharp
11+
var storage = CloudStorageAccount.FromConfigurationSetting("MyStorage");
12+
13+
var log = new LoggerConfiguration()
14+
.WriteTo.AzureTableStorage(storage)
15+
.CreateLogger();
16+
```

0 commit comments

Comments
 (0)