24 references to Logger
RunTests (24)
ConsoleUtil.cs (4)
18Logger.Log(message + Environment.NewLine); 24Logger.Log(""); 31Logger.LogWarning(message); 37Logger.Log(message);
ProcessTestExecutor.cs (3)
146Logger.Log($"Create xunit process with id {dotnetProcessInfo.Id} for test {workItemInfo.DisplayName}"); 151Logger.Log($"Exit xunit process with id {dotnetProcessInfo.Id} for test {workItemInfo.DisplayName} with code {xunitProcessResult.ExitCode}"); 179Logger.Log($"Command line {workItemInfo.DisplayName} completed in {span.TotalSeconds} seconds: {options.DotnetFilePath} {commandLineArguments}");
Program.cs (15)
29Logger.Log("RunTest command line"); 30Logger.Log(string.Join(" ", args)); 164Logger.Log("### Begin logging executed process details"); 169Logger.Log($"### Begin {process.Id}"); 170Logger.Log($"### {startInfo.FileName} {startInfo.Arguments}"); 171Logger.Log($"### Exit code {process.ExitCode}"); 172Logger.Log("### Standard Output"); 175Logger.Log(line); 177Logger.Log("### Standard Error"); 180Logger.Log(line); 182Logger.Log($"### End {process.Id}"); 185Logger.Log("End logging executed process details"); 196Logger.WriteTo(writer); 205Logger.Clear(); 250Logger.Log("Failed to dump process", ex);
TestHistoryManager.cs (2)
97Logger.Log($"Skipping overall result for work item {testResult.AutomatedTestName}"); 120Logger.Log($"Found {duplicateCount} duplicate tests in run {runForThisStage.Name}.");