internal static void SetUp(Task task)
 {
     if (task.BuildEngine == null)
     {
         logger = new TraceLog();
     }
     else
     {
         logger = new MSBuildLog(task.Log);
     }
 }
 /// <summary>
 /// Initializes static members of the BaseBuildLog class
 /// </summary>
 static BaseBuildLog()
 {
     logger = new TraceLog();
 }