https://github.com/shuttle/shuttle.core.data.logging
Provides logging for Shuttle.Core.Data components.
https://github.com/shuttle/shuttle.core.data.logging
Last synced: about 2 months ago
JSON representation
Provides logging for Shuttle.Core.Data components.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.core.data.logging
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2024-01-07T05:30:26.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-05T14:57:25.000Z (10 months ago)
- Last Synced: 2024-10-05T19:35:42.500Z (8 months ago)
- Language: C#
- Size: 31.3 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);
});
```