From 9eafd3db6733b815c2f5451c98cde0327bcba976 Mon Sep 17 00:00:00 2001 From: David Boike Date: Mon, 1 Jun 2026 16:41:24 -0500 Subject: [PATCH] Remove vestigial Console.WriteLine --- .../BrokerThroughput/BrokerThroughputCollectorHostedService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Particular.LicensingComponent/BrokerThroughput/BrokerThroughputCollectorHostedService.cs b/src/Particular.LicensingComponent/BrokerThroughput/BrokerThroughputCollectorHostedService.cs index c54ef4ee9c..39dea964d7 100644 --- a/src/Particular.LicensingComponent/BrokerThroughput/BrokerThroughputCollectorHostedService.cs +++ b/src/Particular.LicensingComponent/BrokerThroughput/BrokerThroughputCollectorHostedService.cs @@ -112,7 +112,6 @@ async Task Exec(IBrokerQueue queueName, string postfix) catch (Exception e) { logger.LogError(e, "Failed to record throughput for {QueueName}", queueName.QueueName); - Console.WriteLine(e); throw; } }