From abd2ce9cf2c60340cfb6aba41a1ced7ebb875c46 Mon Sep 17 00:00:00 2001 From: Nate McMaster <nate.mcmaster@microsoft.com> Date: Thu, 13 Jul 2017 18:11:04 -0700 Subject: [PATCH] Disable TeamCity flow logger for now. It's a little too messy and needs refinement --- build/tasks/Logger/FlowLogger.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/tasks/Logger/FlowLogger.cs b/build/tasks/Logger/FlowLogger.cs index 27491e2e4de..bbab6ac5bc7 100644 --- a/build/tasks/Logger/FlowLogger.cs +++ b/build/tasks/Logger/FlowLogger.cs @@ -10,7 +10,9 @@ namespace RepoTasks { public class FlowLogger : ConsoleLogger { - private static readonly bool IsTeamCity = !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("TEAMCITY_PROJECT_NAME")); + // disabled until we can fix some of the whitespace and flow issues caused by invoking other shell commands from MSBuild + // private static readonly bool IsTeamCity = !string.IsNullOrEmpty(Environment.GetEnvironmentVariable("TEAMCITY_PROJECT_NAME")); + private static readonly bool IsTeamCity = false; private volatile bool _initialized; -- GitLab