Table of Contents

Configuring logger

Apizr v4+ relies on Microsoft.Extensions.Logging, which relies on any compatible logger of your choice. Apizr comes with a quite simple built-in Debug logger by default, but you'd better provide your own obviously.

You can configure logger only by fluent configuration.

There's nothing specific to do with Apizr about logger when using the extended approach.

Just don't forget to configure it like you usualy do:

loggingBuilder.AddConsole()

wherever in your app you get access to ILoggingBuilder.