https://github.com/shuttle/shuttle.esb.logging
Provides non-intrusive logging for Shuttle.Esb components.
https://github.com/shuttle/shuttle.esb.logging
Last synced: about 2 months ago
JSON representation
Provides non-intrusive logging for Shuttle.Esb components.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.esb.logging
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2022-07-22T04:28:05.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T15:22:05.000Z (10 months ago)
- Last Synced: 2024-10-05T16:45:57.247Z (8 months ago)
- Language: C#
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Service Bus Logging
```
PM> Install-Package Shuttle.Esb.Logging
```## Configuration
```c#
services.AddServiceBusLogging(); // all logging options enabled
```Specific logging options may be specified:
```c#
services.AddServiceBusLogging(builder =>
{
builder.Options.PipelineTypes = new List { "pieline-type-name" };
builder.Options.PipelineEventTypes = new List { "pieline-event-type-name" };
builder.Options.AddPipelineType();
builder.Options.AddPipelineType(pipelineType);
builder.Options.AddPipelineEventType();
builder.Options.AddPipelineEventType(pipelineEventType);
});
```