Skip to content

Shuttle/Shuttle.Recall.Logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Recall Logging

PM> Install-Package Shuttle.Recall.Logging

Configuration

services.AddRecallLogging(); // all logging options enabled

Specific logging options may be specified:

services.AddRecallLogging(builder =>
{
	builder.Options.PipelineTypes = new List<string> { "pieline-type-name" };
	builder.Options.PipelineEventTypes = new List<string> { "pieline-event-type-name" };
	builder.Options.AddPipelineType<PipelineType>();
	builder.Options.AddPipelineType(pipelineType);
	builder.Options.AddPipelineEventType<PipelineEventType>();
	builder.Options.AddPipelineEventType(pipelineEventType);
});

About

Provides non-intrusive logging for Shuttle.Recall components.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages