From cb29e0bb72e45ad1d5af615b62cb1df0e4253b2e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Dec 2025 17:56:20 +0000 Subject: [PATCH 1/2] Initial plan From b4ba5ce60054e33d9cadb8f3b98e008706bb6f61 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 19 Dec 2025 18:10:07 +0000 Subject: [PATCH 2/2] Reduce logging verbosity in GrpcSidecarFixture to make test output organized Co-authored-by: YunchuWang <12449837+YunchuWang@users.noreply.github.com> --- test/Grpc.IntegrationTests/GrpcSidecarFixture.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/Grpc.IntegrationTests/GrpcSidecarFixture.cs b/test/Grpc.IntegrationTests/GrpcSidecarFixture.cs index cfefcd4d..e6bdbc46 100644 --- a/test/Grpc.IntegrationTests/GrpcSidecarFixture.cs +++ b/test/Grpc.IntegrationTests/GrpcSidecarFixture.cs @@ -28,6 +28,15 @@ public GrpcSidecarFixture() // Use a random port number to allow multiple instances to run in parallel string address = $"http://{ListenHost}:{Random.Shared.Next(30000, 40000)}"; this.host = Host.CreateDefaultBuilder() + .ConfigureLogging(logging => + { + // Reduce logging verbosity to make test output more readable and organized. + // Filter out noisy ASP.NET Core and gRPC infrastructure logs while keeping + // important DurableTask sidecar logs for debugging. + logging.SetMinimumLevel(LogLevel.Warning); + logging.AddFilter("Microsoft.DurableTask.Sidecar", LogLevel.Information); + logging.AddFilter("Microsoft.Hosting.Lifetime", LogLevel.Information); + }) .ConfigureWebHostDefaults(webBuilder => { webBuilder