Reputation: 7692
I'm trying to figure out if ServiceStack writes any logs, and if it does how would someone plug into it to capture or redirect it to a logging framework.
Upvotes: 4
Views: 4215
Reputation: 143339
ServiceStack uses the ServiceStack.Logging abstract logging framework which currently has 5 different .NET logging providers available on NuGet and Github:
The ConsoleLogger and DebugLogger and are already built-in into ServiceStack and bind to .NET Framework's Console and Debug loggers.
Upvotes: 5