vip32 / serilog-sinks-litedb

Apache License 2.0
33 stars 15 forks source link

Serilog.Sinks.LiteDB

NuGet

A Serilog sink that writes events as documents to LiteDB.

Package - Serilog.Sinks.LiteDB | Platforms - netstandard2.0, net6.0, net8.0

In the example shown, the sink will write to the database logs. The default collection name is log, but a custom collection can be supplied with the optional CollectionName parameter. The database and collection will be created if they do not exist.

// basic usage defaults to writing to `log` collection
var log = new LoggerConfiguration()
    .WriteTo.LiteDB(@"c:\tmp\logs.db")
    .CreateLogger();

// creates custom collection `applog`
var log = new LoggerConfiguration()
    .WriteTo.LiteDB(@"c:\tmp\logs.db", collectionName: "applog")
    .CreateLogger();