From c6b4fe5c078bd510a242b17490ed4ae5e34f1c24 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Thu, 16 Jun 2016 09:08:05 -0500 Subject: [PATCH] (GH-796) Relax upgrade log package separation In 7875987ea we added more separation between package information. This may have been a bit too much for some of the output, causing the log output to be longer than desired. Relax that for the two messages that indicate all is good to go. --- src/chocolatey/infrastructure.app/services/NugetService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chocolatey/infrastructure.app/services/NugetService.cs b/src/chocolatey/infrastructure.app/services/NugetService.cs index e1e5c7f82a..d728882e56 100644 --- a/src/chocolatey/infrastructure.app/services/NugetService.cs +++ b/src/chocolatey/infrastructure.app/services/NugetService.cs @@ -634,7 +634,7 @@ public ConcurrentDictionary upgrade_run(ChocolateyConfigu { if (config.RegularOutput) { - this.Log().Info(ChocolateyLoggers.Important, "{0}{1}".format_with(Environment.NewLine, logMessage)); + this.Log().Info(ChocolateyLoggers.Important, logMessage); } else { @@ -660,7 +660,7 @@ public ConcurrentDictionary upgrade_run(ChocolateyConfigu { if (config.RegularOutput) { - this.Log().Info("{0}{1}".format_with(Environment.NewLine, logMessage)); + this.Log().Info(logMessage); } else {