kay.one
kay.one

Reputation: 7692

Logging in ServiceStack

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

Answers (1)

mythz
mythz

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

Related Questions