32 references to Logger
RunTests (32)
AssemblyScheduler.cs (8)
63Logger.Log($"Scheduling {assemblies.Length} assemblies"); 67Logger.Log("Building work items with one assembly each."); 166Logger.Log($"Could not find test execution history for test {unmatchedLocalTest}"); 172Logger.Log($"Found historical data for test {unmatchedRemoteTest} that was not present in local assemblies"); 203Logger.Log($"Building single assembly work item {workItemIndex} for {assembly.AssemblyPath}"); 274Logger.Log("==== Work Item List ===="); 278Logger.Log($"- Work Item {workItem.PartitionIndex} (Execution time {totalExecutionTime})"); 288LogFilters(workItem, Logger.Log);
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)
37Logger.Log("RunTest command line"); 38Logger.Log(string.Join(" ", args)); 167Logger.Log("### Begin logging executed process details"); 172Logger.Log($"### Begin {process.Id}"); 173Logger.Log($"### {startInfo.FileName} {startInfo.Arguments}"); 174Logger.Log($"### Exit code {process.ExitCode}"); 175Logger.Log("### Standard Output"); 178Logger.Log(line); 180Logger.Log("### Standard Error"); 183Logger.Log(line); 185Logger.Log($"### End {process.Id}"); 188Logger.Log("End logging executed process details"); 199Logger.WriteTo(writer); 208Logger.Clear(); 253Logger.Log("Failed to dump process", ex);
TestHistoryManager.cs (2)
96Logger.Log($"Skipping overall result for work item {testResult.AutomatedTestName}"); 119Logger.Log($"Found {duplicateCount} duplicate tests in run {runForThisStage.Name}.");