Provides a Serilog logging integration for Rebus.
Do it like this if you just want Rebus to use your global Serilog logger directly:
Configure.With(...)
.Logging(l => l.Serilog())
.Transport(t => t.Use(...))
.(...)
.Start();
or like this if you want to customize it:
var logger = Log.ForContext("queue", queueName);
Configure.With(...)
.Logging(l => l.Serilog(logger))
.Transport(t => t.Use(..., queueName))
.(...)
.Start();