Skip to content

vip32/serilog-sinks-litedb

Repository files navigation

Serilog.Sinks.LiteDB

NuGet

A Serilog sink that writes events as documents to LiteDB.

Package - Serilog.Sinks.LiteDB | Platforms - net45, netstandard2.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();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •