2 implementations of LogCommentFromText
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
56public void LogCommentFromText(BuildEventContext buildEventContext, MessageImportance importance, string message)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
346public void LogCommentFromText(BuildEventContext buildEventContext, MessageImportance importance, string message)
14 references to LogCommentFromText
Microsoft.Build (14)
BackEnd\BuildManager\BuildManager.cs (2)
3172loggingService.LogCommentFromText(BuildEventContext.Invalid, message.Importance, message.Text); 3333loggingService?.LogCommentFromText(BuildEventContext.Invalid, MessageImportance.High, message);
BackEnd\Components\Logging\LoggingContext.cs (1)
169_loggingService.LogCommentFromText(_eventContext, importance, message);
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
1038_loggingService.LogCommentFromText( 1093_loggingService.LogCommentFromText(
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (2)
288_loggingService.LogCommentFromText(_buildEventContext, MessageImportance.Low, reason); 305_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\CheckContext\CheckLoggingContext.cs (1)
35.LogCommentFromText(eventContext, importance, message);
Instance\ProjectInstance.cs (1)
2984loggingService.LogCommentFromText(projectBuildEventContext, MessageImportance.Low, comment);
Utilities\EngineFileUtilities.cs (1)
351loggingService.LogCommentFromText(buildEventContext, MessageImportance.Low, globFailure);