Skip to content
This repository has been archived by the owner on Feb 27, 2022. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 616 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 616 Bytes

Serilog.Sinks.CouchDB

Build status

A Serilog sink that writes events to Apache CouchDB.

Package - Serilog.Sinks.CouchDB | Platforms - .NET 4.5

You'll need to create a database on your CouchDB server. In the example shown, it is called log.

var log = new LoggerConfiguration()
    .WriteTo.CouchDB("http://mycouchdb/log/")
    .CreateLogger();