Skip to content

Commit 39062a9

Browse files
committed
add more logging
1 parent b4b0bae commit 39062a9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/code/InstallHelper.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -977,13 +977,14 @@ private ConcurrentDictionary<string, Hashtable> InstallParentAndDependencyPackag
977977
{
978978
var pkgToInstallName = pkgToBeInstalled.Name;
979979
var pkgToInstallVersion = Utils.GetNormalizedVersionString(pkgToBeInstalled.Version.ToString(), pkgToBeInstalled.Prerelease);
980+
_cmdletPassedIn.WriteDebug("In BeginInstallPackage - not going through concurrency");
980981
Stream responseStream = currentServer.InstallPackage(pkgToInstallName, pkgToInstallVersion, true, out ErrorRecord installNameErrRecord);
981982
_cmdletPassedIn.WriteDebug("In BeginInstallPackage 981");
982983

983984
if (installNameErrRecord != null)
984985
{
985986
_cmdletPassedIn.WriteDebug("In BeginInstallPackage 985");
986-
_cmdletPassedIn.WriteError(installNameErrRecord);
987+
//_cmdletPassedIn.WriteError(installNameErrRecord); // todo revert this
987988
return packagesHash;
988989
}
989990
_cmdletPassedIn.WriteDebug("In BeginInstallPackage 988");

0 commit comments

Comments
 (0)