2 implementations of LogComment
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
37
public void
LogComment
(BuildEventContext buildEventContext, MessageImportance importance, string messageResourceName, params object[] messageArgs)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
331
public void
LogComment
(BuildEventContext buildEventContext, MessageImportance importance, string messageResourceName, params object[] messageArgs)
37 references to LogComment
Microsoft.Build (37)
BackEnd\BuildManager\BuildManager.cs (3)
597
loggingService.
LogComment
(buildEventContext: BuildEventContext.Invalid, MessageImportance.Normal, "BuildCheckEnabled");
666
loggingService.
LogComment
(BuildEventContext.Invalid, MessageImportance.Normal, "UsingInputCaches", string.Join(";", _buildParameters.InputResultsCacheFiles));
671
loggingService.
LogComment
(BuildEventContext.Invalid, MessageImportance.Normal, "WritingToOutputCache", _buildParameters.OutputResultsCacheFile);
BackEnd\Components\Logging\LoggingContext.cs (1)
128
_loggingService.
LogComment
(_eventContext, importance, messageResourceName, messageArgs);
BackEnd\Components\Logging\ProjectLoggingContext.cs (2)
111
LoggingService.
LogComment
(this.BuildEventContext, MessageImportance.Low, "ToolsVersionInEffectForBuild", projectStarted.ToolsVersion);
150
LoggingService.
LogComment
(this.BuildEventContext, MessageImportance.Low, "ToolsVersionInEffectForBuild", toolsVersion);
BackEnd\Components\ProjectCache\ProjectCacheService.cs (11)
260
_loggingService.
LogComment
(buildEventContext, MessageImportance.High, "LoadingProjectCachePlugin", pluginTypeName);
598
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithDefaultTargets", buildRequest.ProjectFullPath);
602
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheQueryStartedWithTargetNames", buildRequest.ProjectFullPath, targetNames);
675
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithDefaultTargets", buildRequest.ProjectFullPath);
679
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheHitWithTargetNames", buildRequest.ProjectFullPath, targetNames);
686
_loggingService.
LogComment
(buildEventContext, MessageImportance.High, "ProjectCacheHitWithOutputs", buildRequest.ProjectInstance!.GetPropertyValue(ReservedPropertyNames.projectName));
693
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithDefaultTargets", buildRequest.ProjectFullPath);
697
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheMissWithTargetNames", buildRequest.ProjectFullPath, targetNames);
704
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithDefaultTargets", buildRequest.ProjectFullPath);
708
_loggingService.
LogComment
(buildEventContext, MessageImportance.Normal, "ProjectCacheNotApplicableWithTargetNames", buildRequest.ProjectFullPath, targetNames);
937
_loggingService.
LogComment
(buildEventContext, MessageImportance.Low, "ProjectCacheEndBuild");
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (8)
282
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Low, "BuildTargetCompletely", _targetToAnalyze.Name);
300
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Normal, "BuildTargetPartially", _targetToAnalyze.Name);
456
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Normal,
459
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Low,
468
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Low, "BuildTargetCompletely", _targetToAnalyze.Name);
469
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Low, "BuildTargetCompletelyNoInputsSpecified");
497
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Normal,
500
_loggingService.
LogComment
(_buildEventContext, MessageImportance.Low,
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
462
_taskLoggingContext.LoggingService.
LogComment
(_taskLoggingContext.BuildEventContext, MessageImportance.Normal, "ErrorConvertedIntoWarning");
BackEnd\Components\Scheduler\Scheduler.cs (7)
604
loggingService.
LogComment
(context, MessageImportance.Normal, "DetailedSummaryHeader");
610
loggingService.
LogComment
(context, MessageImportance.Normal, "BuildHierarchyHeader");
2039
_componentHost.LoggingService.
LogComment
(
2436
loggingService.
LogComment
(context, MessageImportance.Normal, "NodeUtilizationHeader", nodeIndices.ToString());
2529
loggingService.
LogComment
(context, MessageImportance.Normal, "NodeUtilizationSummary", utilitzationPercentages.ToString(), (utilizationAverage / (double)_availableNodes.Count) * 100);
2600
loggingService.
LogComment
(context, MessageImportance.Normal, "NodeUtilizationEntry", stringBuilder, duration, accumulatedDuration, durationBar);
2632
loggingService.
LogComment
(
BuildCheck\Infrastructure\CheckContext\CheckLoggingContext.cs (1)
31
.
LogComment
(eventContext, importance, messageResourceName, messageArgs);
Instance\ProjectInstance.cs (3)
2647
loggingService.
LogComment
(projectBuildEventContext, MessageImportance.Low, "OldWrapperGeneratedExplicitToolsVersion", toolsVersion);
2710
loggingService.
LogComment
(projectBuildEventContext, MessageImportance.Low, "OldWrapperGeneratedOldSolutionVersion", "2.0", solutionVersion);
2715
loggingService.
LogComment
(projectBuildEventContext, MessageImportance.Low, "OldWrapperGeneratedOldSolutionVersion", "3.5", solutionVersion);