Skip to content

Commit

Permalink
(maint) silence ruby/powershell switch messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Jan 24, 2015
1 parent 99d960e commit f791260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions product/uppercut.tasks/CustomExtensionTask.cs
Expand Up @@ -51,7 +51,7 @@ public override void run_the_task()
ruby = Project.Properties["app.ruby"];
if (ruby != @"C:\Ruby\bin\ruby.exe")
{
infrastructure.logging.Log.bound_to(this).log_a_warning_event_containing("Setting app.ruby to '{0}'", ruby);
infrastructure.logging.Log.bound_to(this).log_an_info_event_containing("Setting app.ruby to '{0}'", ruby);
}
}
ruby = expand_environment_variables(ruby);
Expand All @@ -61,7 +61,7 @@ public override void run_the_task()
powershell = Project.Properties["app.powershell"];
if (powershell != @"%WINDIR%\System32\WindowsPowerShell\v1.0\powershell.exe")
{
infrastructure.logging.Log.bound_to(this).log_a_warning_event_containing("Setting app.powershell to '{0}'", powershell);
infrastructure.logging.Log.bound_to(this).log_an_info_event_containing("Setting app.powershell to '{0}'", powershell);
}
}
powershell = expand_environment_variables(powershell);
Expand Down

0 comments on commit f791260

Please sign in to comment.