2 questions
0
votes
1
answer
60
views
Seq logging with active active configuration
I have a Docker project running MongoDB, Seq for logging, RabbitMQ, and Gunicorn app containers that I coded with Python on a server. My client wants this project to operate in an active-active ...
1
vote
1
answer
166
views
Toggle Serilog sink at runtime
I'm using code-based Serilog config (not appsettings). I want to toggle a sink at runtime; specifically Seq, but others too.
I know of the WriteTo.Conditional feature:
var isFooEnabled = true;
var ...