118 references to Log
Microsoft.Build (80)
BackEnd\BuildManager\BuildManager.cs (2)
503MSBuildEventSource.Log.BuildStart(); 1091MSBuildEventSource.Log.BuildStop();
BackEnd\Client\MSBuildClient.cs (2)
220MSBuildEventSource.Log.MSBuildServerBuildStart(descriptiveCommandLine); 228MSBuildEventSource.Log.MSBuildServerBuildStop(descriptiveCommandLine, _numConsoleWritePackets, _sizeOfConsoleWritePackets, _exitResult.MSBuildClientExitType.ToString(), _exitResult.MSBuildAppExitTypeString ?? string.Empty);
BackEnd\Components\ProjectCache\ProjectCacheService.cs (11)
223MSBuildEventSource.Log.ProjectCacheCreatePluginInstanceStart(pluginAssemblyPath); 242MSBuildEventSource.Log.ProjectCacheCreatePluginInstanceStop(pluginAssemblyPath, pluginTypeName); 254MSBuildEventSource.Log.ProjectCacheBeginBuildStart(pluginTypeName); 313MSBuildEventSource.Log.ProjectCacheBeginBuildStop(pluginTypeName); 542MSBuildEventSource.Log.ProjectCacheGetCacheResultStart(plugin.Name, buildRequest.ProjectFullPath, targetNames ?? MSBuildConstants.DefaultTargetsMarker); 562if (MSBuildEventSource.Log.IsEnabled()) 565MSBuildEventSource.Log.ProjectCacheGetCacheResultStop(plugin.Name, buildRequest.ProjectFullPath, targetNames ?? "<default>", cacheResultType); 772MSBuildEventSource.Log.ProjectCacheHandleBuildResultStart(plugin.Name, fileAccessContext.ProjectFullPath, targetNames); 783MSBuildEventSource.Log.ProjectCacheHandleBuildResultStop(plugin.Name, fileAccessContext.ProjectFullPath, targetNames); 841MSBuildEventSource.Log.ProjectCacheEndBuildStart(plugin.Name); 852MSBuildEventSource.Log.ProjectCacheEndBuildStop(plugin.Name);
BackEnd\Components\RequestBuilder\RequestBuilder.cs (5)
781MSBuildEventSource.Log.RequestThreadProcStart(); 784MSBuildEventSource.Log.RequestThreadProcStop(); 1122MSBuildEventSource.Log.BuildProjectStart(_requestEntry.RequestConfiguration.ProjectFullPath); 1215if (MSBuildEventSource.Log.IsEnabled()) 1217MSBuildEventSource.Log.BuildProjectStop(_requestEntry.RequestConfiguration.ProjectFullPath,
BackEnd\Components\RequestBuilder\TargetBuilder.cs (2)
485MSBuildEventSource.Log.TargetStart(currentTargetEntry.Name); 487MSBuildEventSource.Log.TargetStop(currentTargetEntry.Name);
BackEnd\Components\RequestBuilder\TargetEntry.cs (2)
480MSBuildEventSource.Log.TargetUpToDateStart(); 483MSBuildEventSource.Log.TargetUpToDateStop((int)dependencyResult);
BackEnd\Components\RequestBuilder\TaskBuilder.cs (2)
430MSBuildEventSource.Log.ExecuteTaskStart(_taskNode?.Name, taskLoggingContext.BuildEventContext.TaskId); 486MSBuildEventSource.Log.ExecuteTaskStop(_taskNode?.Name, taskLoggingContext.BuildEventContext.TaskId);
BackEnd\Components\RequestBuilder\TaskHost.cs (4)
361MSBuildEventSource.Log.ExecuteTaskYieldStart(_taskLoggingContext.TaskName, _taskLoggingContext.BuildEventContext.TaskId); 390MSBuildEventSource.Log.ExecuteTaskYieldStop(_taskLoggingContext.TaskName, _taskLoggingContext.BuildEventContext.TaskId); 391MSBuildEventSource.Log.ExecuteTaskReacquireStart(_taskLoggingContext.TaskName, _taskLoggingContext.BuildEventContext.TaskId); 393MSBuildEventSource.Log.ExecuteTaskReacquireStop(_taskLoggingContext.TaskName, _taskLoggingContext.BuildEventContext.TaskId);
BackEnd\Components\SdkResolution\CachingSdkResolverService.cs (2)
44MSBuildEventSource.Log.CachedSdkResolverServiceResolveSdkStart(sdk.Name, solutionPath ?? string.Empty, projectPath ?? string.Empty); 82MSBuildEventSource.Log.CachedSdkResolverServiceResolveSdkStop(sdk.Name, solutionPath ?? string.Empty, projectPath ?? string.Empty, result.Success, wasResultCached);
BackEnd\Components\SdkResolution\OutOfProcNodeSdkResolverService.cs (2)
71MSBuildEventSource.Log.OutOfProcSdkResolverServiceRequestSdkPathFromMainNodeStart(submissionId, sdk.Name, solutionPath, projectPath); 91MSBuildEventSource.Log.OutOfProcSdkResolverServiceRequestSdkPathFromMainNodeStop(submissionId, sdk.Name, solutionPath, projectPath, _lastResponse.Success, wasResultCached);
BackEnd\Components\SdkResolution\SdkResolverLoader.cs (6)
48MSBuildEventSource.Log.SdkResolverLoadAllResolversStart(); 69MSBuildEventSource.Log.SdkResolverLoadAllResolversStop(resolvers.Count); 77MSBuildEventSource.Log.SdkResolverFindResolversManifestsStart(); 86MSBuildEventSource.Log.SdkResolverFindResolversManifestsStop(allResolversManifests?.Count ?? 0); 257MSBuildEventSource.Log.SdkResolverLoadResolversStart(); 265MSBuildEventSource.Log.SdkResolverLoadResolversStop(manifest.DisplayName ?? string.Empty, resolvers.Count);
BackEnd\Components\SdkResolution\SdkResolverService.cs (2)
321MSBuildEventSource.Log.SdkResolverResolveSdkStart(); 347MSBuildEventSource.Log.SdkResolverResolveSdkStop(sdkResolver.Name, sdk.Name, solutionPath ?? string.Empty, projectPath ?? string.Empty, result?.Path ?? string.Empty, result?.Success ?? false);
Construction\ProjectRootElement.cs (6)
1521if (MSBuildEventSource.Log.IsEnabled()) 1523MSBuildEventSource.Log.SaveStart(_projectFileLocation.LocationString); 1554if (MSBuildEventSource.Log.IsEnabled()) 1556MSBuildEventSource.Log.SaveStop(_projectFileLocation.LocationString); 2065MSBuildEventSource.Log.LoadDocumentStart(fullPath); 2095MSBuildEventSource.Log.LoadDocumentStop(fullPath);
Evaluation\Evaluator.cs (14)
315MSBuildEventSource.Log.EvaluateStart(root.ProjectFileLocation.File); 356MSBuildEventSource.Log.EvaluateStop(root.ProjectFileLocation.File); 635MSBuildEventSource.Log.EvaluatePass0Start(_projectRootElement.ProjectFileLocation.File); 649MSBuildEventSource.Log.EvaluatePass0Stop(projectFile); 652MSBuildEventSource.Log.EvaluatePass1Start(projectFile); 667MSBuildEventSource.Log.EvaluatePass1Stop(projectFile); 670MSBuildEventSource.Log.EvaluatePass2Start(projectFile); 681MSBuildEventSource.Log.EvaluatePass2Stop(projectFile); 689MSBuildEventSource.Log.EvaluatePass3Start(projectFile); 724MSBuildEventSource.Log.EvaluatePass3Stop(projectFile); 727MSBuildEventSource.Log.EvaluatePass4Start(projectFile); 758MSBuildEventSource.Log.EvaluatePass4Stop(projectFile); 763MSBuildEventSource.Log.EvaluatePass5Start(projectFile); 817MSBuildEventSource.Log.EvaluatePass5Stop(projectFile);
Evaluation\LazyItemEvaluator.cs (2)
82MSBuildEventSource.Log.EvaluateConditionStart(condition); 95MSBuildEventSource.Log.EvaluateConditionStop(condition, result);
Evaluation\LazyItemEvaluator.IncludeOperation.cs (4)
107if (MSBuildEventSource.Log.IsEnabled()) 109MSBuildEventSource.Log.ExpandGlobStart(_rootDirectory ?? string.Empty, glob, string.Join(", ", excludePatternsForGlobs)); 124if (MSBuildEventSource.Log.IsEnabled()) 126MSBuildEventSource.Log.ExpandGlobStop(_rootDirectory ?? string.Empty, glob, string.Join(", ", excludePatternsForGlobs));
Evaluation\LazyItemEvaluator.LazyItemOperation.cs (2)
57MSBuildEventSource.Log.ApplyLazyItemOperationsStart(_itemElement.ItemType); 62MSBuildEventSource.Log.ApplyLazyItemOperationsStop(_itemElement.ItemType);
Evaluation\ProjectParser.cs (2)
116MSBuildEventSource.Log.ParseStart(projectRootElement.ProjectFileLocation.File); 121MSBuildEventSource.Log.ParseStop(projectRootElement.ProjectFileLocation.File);
Graph\ProjectGraph.cs (4)
457if (MSBuildEventSource.Log.IsEnabled()) 469MSBuildEventSource.Log.ProjectGraphConstructionStart(etwArgs); 477if (MSBuildEventSource.Log.IsEnabled()) 479MSBuildEventSource.Log.ProjectGraphConstructionStop(measurementInfo.ETWArgs);
TypeLoader.cs (4)
384MSBuildEventSource.Log.LoadAssemblyAndFindTypeStart(); 392MSBuildEventSource.Log.CreateLoadedTypeStart(loadedAssembly.FullName); 396MSBuildEventSource.Log.CreateLoadedTypeStop(loadedAssembly.FullName); 401MSBuildEventSource.Log.LoadAssemblyAndFindTypeStop(_assemblyLoadInfo.AssemblyFile, numberOfTypesSearched);
Microsoft.Build.Framework (9)
ReuseableStringBuilder.cs (6)
266MSBuildEventSource.Log.ReusableStringBuilderFactoryStart(hash: returned.GetHashCode(), newCapacity: capacity, oldCapacity: 0, type: "miss"); 275MSBuildEventSource.Log.ReusableStringBuilderFactoryStart(hash: returned.GetHashCode(), newCapacity: newCapacity, oldCapacity: returned.Capacity, type: "miss-need-bigger"); 284MSBuildEventSource.Log.ReusableStringBuilderFactoryStart(hash: returned.GetHashCode(), newCapacity: capacity, oldCapacity: returned.Capacity, type: "hit"); 319MSBuildEventSource.Log.ReusableStringBuilderFactoryStop(hash: returningBuilder.GetHashCode(), returningCapacity: returningBuilder.Capacity, returningLength: returningLength, type: "discard"); 345MSBuildEventSource.Log.ReusableStringBuilderFactoryUnbalanced(oldHash: oldSharedBuilder.GetHashCode(), newHash: returningBuilder.GetHashCode()); 348MSBuildEventSource.Log.ReusableStringBuilderFactoryStop(hash: returningBuilder.GetHashCode(), returningCapacity: returningBuilder.Capacity, returningLength: returningLength, type: returning._borrowedBuilder != returningBuilder ? "return-new" : "return");
StringBuilderCache.cs (3)
54MSBuildEventSource.Log.ReusableStringBuilderFactoryStart(hash: sb.GetHashCode(), newCapacity: capacity, oldCapacity: sb.Capacity, type: "sbc-hit"); 63MSBuildEventSource.Log.ReusableStringBuilderFactoryStart(hash: stringBuilder.GetHashCode(), newCapacity: capacity, oldCapacity: stringBuilder.Capacity, type: "sbc-miss"); 96MSBuildEventSource.Log.ReusableStringBuilderFactoryStop(hash: sb.GetHashCode(), returningCapacity: sb.Capacity, returningLength: sb.Length, type: sb.Capacity <= MAX_BUILDER_SIZE ? "sbc-return" : "sbc-discard");
Microsoft.Build.Tasks.Core (21)
AssemblyDependency\ReferenceTable.cs (4)
1364MSBuildEventSource.Log.RarRemoveReferencesMarkedForExclusionStart(); 1452MSBuildEventSource.Log.RarRemoveReferencesMarkedForExclusionStop(); 1617MSBuildEventSource.Log.RarComputeClosureStart(); 1628MSBuildEventSource.Log.RarComputeClosureStop();
AssemblyDependency\ResolveAssemblyReference.cs (5)
1070MSBuildEventSource.Log.RarLogResultsStart(); 1299MSBuildEventSource.Log.RarLogResultsStop(); 2158MSBuildEventSource.Log.RarOverallStart(); 2648MSBuildEventSource.Log.RarOverallStop(_assemblyNames?.Length ?? -1, _assemblyFiles?.Length ?? -1, _resolvedFiles?.Length ?? -1, _resolvedDependencyFiles?.Length ?? -1, _copyLocalFiles?.Length ?? -1, _findDependencies); 2665MSBuildEventSource.Log.RarOverallStop(_assemblyNames?.Length ?? -1, _assemblyFiles?.Length ?? -1, _resolvedFiles?.Length ?? -1, _resolvedDependencyFiles?.Length ?? -1, _copyLocalFiles?.Length ?? -1, _findDependencies);
Copy.cs (7)
473MSBuildEventSource.Log.CopyUpToDateStart(destPath); 497MSBuildEventSource.Log.CopyUpToDateStop(destPath, true); 581MSBuildEventSource.Log.CopyUpToDateStart(destItem.ItemSpec); 605MSBuildEventSource.Log.CopyUpToDateStop(destItem.ItemSpec, true); 855MSBuildEventSource.Log.CopyUpToDateStop(destinationFileState.Name, true); 859MSBuildEventSource.Log.CopyUpToDateStop(destinationFileState.Name, false); 873MSBuildEventSource.Log.CopyUpToDateStop(destinationFileState.Name, true);
FileIO\WriteLinesToFile.cs (3)
108MSBuildEventSource.Log.WriteLinesToFileUpToDateStart(); 119MSBuildEventSource.Log.WriteLinesToFileUpToDateStop(File.ItemSpec, true); 134MSBuildEventSource.Log.WriteLinesToFileUpToDateStop(File.ItemSpec, false);
GenerateResource.cs (2)
657MSBuildEventSource.Log.GenerateResourceOverallStart(); 926MSBuildEventSource.Log.GenerateResourceOverallStop();
MSBuild (8)
TypeLoader.cs (4)
384MSBuildEventSource.Log.LoadAssemblyAndFindTypeStart(); 392MSBuildEventSource.Log.CreateLoadedTypeStart(loadedAssembly.FullName); 396MSBuildEventSource.Log.CreateLoadedTypeStop(loadedAssembly.FullName); 401MSBuildEventSource.Log.LoadAssemblyAndFindTypeStop(_assemblyLoadInfo.AssemblyFile, numberOfTypesSearched);
XMake.cs (4)
682if (MSBuildEventSource.Log.IsEnabled()) 684MSBuildEventSource.Log.MSBuildExeStart(string.Join(" ", commandLine)); 1073if (MSBuildEventSource.Log.IsEnabled()) 1075MSBuildEventSource.Log.MSBuildExeStop(string.Join(" ", commandLine));