Skip to content

Commit

Permalink
(GH-796) Relax upgrade log package separation
Browse files Browse the repository at this point in the history
In 7875987 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.
  • Loading branch information
ferventcoder committed Jun 16, 2016
1 parent 89c5573 commit c6b4fe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chocolatey/infrastructure.app/services/NugetService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ public ConcurrentDictionary<string, PackageResult> 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
{
Expand All @@ -660,7 +660,7 @@ public ConcurrentDictionary<string, PackageResult> upgrade_run(ChocolateyConfigu
{
if (config.RegularOutput)
{
this.Log().Info("{0}{1}".format_with(Environment.NewLine, logMessage));
this.Log().Info(logMessage);
}
else
{
Expand Down

0 comments on commit c6b4fe5

Please sign in to comment.