Azure – Stop logging from TableClient
I have a function app that uses a table client. svc.AddAzureClients(bldr => { var serviceUrl = tableStorageSection["ServiceUrl"] ?? throw new ArgumentNullException("Missing value for Values:TableStorage:ServiceUrl"); bldr.UseCredential(new DefaultAzureCredential()) .AddTableServiceClient(new Uri(serviceUrl)); }); When I run the function locally, this client spits out a…