2 implementations of LogCommentFromText
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
53public void LogCommentFromText(BuildEventContext buildEventContext, MessageImportance importance, string message)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
318public void LogCommentFromText(BuildEventContext buildEventContext, MessageImportance importance, string message)
12 references to LogCommentFromText
Microsoft.Build (12)
BackEnd\BuildManager\BuildManager.cs (2)
3061loggingService.LogCommentFromText(BuildEventContext.Invalid, message.Importance, message.Text); 3219loggingService?.LogCommentFromText(BuildEventContext.Invalid, MessageImportance.High, message);
BackEnd\Components\Logging\LoggingContext.cs (1)
169_loggingService.LogCommentFromText(_eventContext, importance, message);
BackEnd\Components\ProjectCache\ProjectCacheService.cs (1)
905_loggingService.LogCommentFromText(
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (2)
287_loggingService.LogCommentFromText(_buildEventContext, MessageImportance.Low, reason); 304_loggingService.LogCommentFromText(_buildEventContext, MessageImportance.Low, reason);
BackEnd\Components\Scheduler\SchedulingPlan.cs (4)
128loggingService.LogCommentFromText(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("CantWriteBuildPlan", planName)); 174loggingService.LogCommentFromText(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("CantReadBuildPlan", planName)); 178loggingService.LogCommentFromText(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("BuildPlanCorrupt", planName)); 182loggingService.LogCommentFromText(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("BuildPlanCorrupt", planName));
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (1)
308_loggingService.LogCommentFromText(buildEventContext, MessageImportance.High, $"Dismounting analyzer '{c.FriendlyName}'");
Instance\ProjectInstance.cs (1)
2709loggingService.LogCommentFromText(projectBuildEventContext, MessageImportance.Low, comment);