From c5ccbd7b32a6ffdb4588002358639974d31fdc79 Mon Sep 17 00:00:00 2001 From: Francisco Gamino Date: Thu, 10 Feb 2022 15:35:52 -0800 Subject: [PATCH] Make throughput warning message visible for tooling diagnosis (#757) --- src/PowerShell/PowerShellManagerPool.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PowerShell/PowerShellManagerPool.cs b/src/PowerShell/PowerShellManagerPool.cs index 43676cd5..94ad8766 100644 --- a/src/PowerShell/PowerShellManagerPool.cs +++ b/src/PowerShell/PowerShellManagerPool.cs @@ -82,7 +82,7 @@ internal PowerShellManager CheckoutIdleWorker( if (psManager == null) { var logger = CreateLoggerWithContext(requestId, invocationId); - logger.Log(isUserOnlyLog: true, LogLevel.Warning, string.Format(PowerShellWorkerStrings.FunctionQueuingRequest, functionName)); + logger.Log(isUserOnlyLog: false, LogLevel.Warning, string.Format(PowerShellWorkerStrings.FunctionQueuingRequest, functionName)); // If the pool has reached its bounded capacity, then the thread // should be blocked until an idle one becomes available.