Rebus.Microsoft.Extensions.Logging 5.1.0
Rebus.Microsoft.Extensions.Logging
Provides a Microsoft Extensions Logging logging integration for Rebus.
Like this:
var loggerFactory = new LoggerFactory()
.AddConsole();
Configure.With(...)
.Logging(l => l.MicrosoftExtensionsLogging(loggerFactory))
.Transport(t => t.Use(...))
.(...)
.Start();
or like this:
var logger = new LoggerFactory()
.AddConsole()
.CreateLogger<Program>();
Configure.With(...)
.Logging(l => l.MicrosoftExtensionsLogging(logger))
.Transport(t => t.Use(...))
.(...)
.Start();
Showing the top 20 packages that depend on Rebus.Microsoft.Extensions.Logging.
Packages | Downloads |
---|---|
Elsa.Core
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application.
This package contains the core of Elsa.
Tip: reference the `Elsa` package instead of this one.
|
7 |
Elsa.Core
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application.
This package contains the core of Elsa.
Tip: reference the `Elsa` package instead of this one.
|
8 |
Elsa.Core
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application.
This package contains the core of Elsa.
Tip: reference the `Elsa` package instead of this one.
|
9 |
Elsa.Core
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application.
This package contains the core of Elsa.
Tip: reference the `Elsa` package instead of this one.
|
11 |
.NET Standard 2.0
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0 && < 10.0.0)
- Rebus (>= 8.0.1)