in src/Microsoft.Azure.WebJobs.Extensions.Dapr/Services/DaprServiceClient.cs [48:59]
public DaprServiceClient(ILoggerFactory loggerFactory, IDaprClient daprClient, INameResolver nameResolver)
{
this.logger = loggerFactory.CreateLogger(LoggingUtils.CreateDaprBindingCategory());
this.stateInputLogger = loggerFactory.CreateLogger(LoggingUtils.CreateDaprBindingCategory("StateInput"));
this.stateOutputLogger = loggerFactory.CreateLogger(LoggingUtils.CreateDaprBindingCategory("StateOutput"));
this.secretInputLogger = loggerFactory.CreateLogger(LoggingUtils.CreateDaprBindingCategory("SecretInput"));
this.invokeOutputLogger = loggerFactory.CreateLogger(LoggingUtils.CreateDaprBindingCategory("InvokeOutput"));
this.bindingOutputLogger = loggerFactory.CreateLogger(LoggingUtils.CreateDaprBindingCategory("BindingOutput"));
this.publishOutputLogger = loggerFactory.CreateLogger(LoggingUtils.CreateDaprBindingCategory("PublishOutput"));
this.daprClient = daprClient;
this.daprAddress = DaprServiceClient.GetDaprHttpAddress(this.logger, nameResolver);
}