20 references to Log
RunTests (20)
ConsoleUtil.cs (3)
18Logger.Log(message + Environment.NewLine); 24Logger.Log(""); 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 (12)
37Logger.Log("RunTest command line"); 38Logger.Log(string.Join(" ", args)); 172Logger.Log("### Begin logging executed process details"); 177Logger.Log($"### Begin {process.Id}"); 178Logger.Log($"### {startInfo.FileName} {startInfo.Arguments}"); 179Logger.Log($"### Exit code {process.ExitCode}"); 180Logger.Log("### Standard Output"); 183Logger.Log(line); 185Logger.Log("### Standard Error"); 188Logger.Log(line); 190Logger.Log($"### End {process.Id}"); 193Logger.Log("End logging executed process details");
TestHistoryManager.cs (2)
98Logger.Log($"Skipping overall result for work item {testResult.AutomatedTestName}"); 121Logger.Log($"Found {duplicateCount} duplicate tests in run {runForThisStage.Name}.");