From dec19a8f57cff0019fccf41fefdb5d2f1ea041dc Mon Sep 17 00:00:00 2001 From: Brandon Olin Date: Wed, 8 Aug 2018 20:42:46 -0700 Subject: [PATCH 1/2] Remove unnecessary verbose output to reduce noise --- .../commands/utility/WebCmdlet/ConvertToJsonCommand.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs index b692a87328a..1adb1d0d473 100644 --- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs +++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs @@ -187,8 +187,6 @@ private object ProcessValue(object obj, int depth) else { TypeInfo t = obj.GetType().GetTypeInfo(); - WriteVerbose(StringUtil.Format(UtilityCommonStrings.ConvertToJsonProcessValueVerboseMessage, t.Name, depth)); - if (t.IsPrimitive) { From fcdcafbf27ce3e1b56877c770dc3751acc8be738 Mon Sep 17 00:00:00 2001 From: Brandon Olin Date: Thu, 9 Aug 2018 10:47:29 -0700 Subject: [PATCH 2/2] Remove unused resource string --- .../resources/UtilityCommonStrings.resx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Microsoft.PowerShell.Commands.Utility/resources/UtilityCommonStrings.resx b/src/Microsoft.PowerShell.Commands.Utility/resources/UtilityCommonStrings.resx index d11d22cfc9e..f8e5623d8fc 100644 --- a/src/Microsoft.PowerShell.Commands.Utility/resources/UtilityCommonStrings.resx +++ b/src/Microsoft.PowerShell.Commands.Utility/resources/UtilityCommonStrings.resx @@ -174,7 +174,4 @@ '{0}' is not supported in this system. - - Processing object of type [{0}] at depth {1} -