Skip to content

Commit

Permalink
(chocolateyGH-305) Log info instead of Debug
Browse files Browse the repository at this point in the history
When the auto uninstaller sends messages through, be sure the user can
also see those messages. They are helpful when there are errors.
  • Loading branch information
ferventcoder committed Jun 5, 2015
1 parent aa849d7 commit 42ad10a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void run(PackageResult packageResult, ChocolateyConfiguration config)
(s, e) =>
{
if (e == null || string.IsNullOrWhiteSpace(e.Data)) return;
this.Log().Debug(() => " [AutoUninstaller] {0}".format_with(e.Data));
this.Log().Info(() => " [AutoUninstaller] {0}".format_with(e.Data));
},
(s, e) =>
{
Expand Down

0 comments on commit 42ad10a

Please sign in to comment.