https://github.com/shuttle/shuttle.recall.logging
Provides non-intrusive logging for Shuttle.Recall components.
https://github.com/shuttle/shuttle.recall.logging
Last synced: about 1 month ago
JSON representation
Provides non-intrusive logging for Shuttle.Recall components.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.recall.logging
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2024-03-10T09:34:16.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-02T13:43:59.000Z (4 months ago)
- Last Synced: 2025-03-19T13:40:28.158Z (2 months ago)
- Language: C#
- Size: 51.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Recall Logging
```
PM> Install-Package Shuttle.Recall.Logging
```## Configuration
```c#
services.AddRecallLogging(); // all logging options enabled
```Specific logging options may be specified:
```c#
services.AddRecallLogging(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);
});
```