2 implementations of LogCommentFromText
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingServiceLogMethods.cs (1)
56
public void
LogCommentFromText
(BuildEventContext buildEventContext, MessageImportance importance, string message)
Microsoft.Build.Engine.UnitTests (1)
BackEnd\MockLoggingService.cs (1)
333
public void
LogCommentFromText
(BuildEventContext buildEventContext, MessageImportance importance, string message)
11 references to LogCommentFromText
Microsoft.Build (11)
BackEnd\BuildManager\BuildManager.cs (1)
3301
loggingService?.
LogCommentFromText
(BuildEventContext.Invalid, MessageImportance.High, message);
BackEnd\Components\Logging\LoggingContext.cs (1)
169
_loggingService.
LogCommentFromText
(_eventContext, importance, message);
BackEnd\Components\ProjectCache\ProjectCacheService.cs (1)
909
_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)
128
loggingService.
LogCommentFromText
(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("CantWriteBuildPlan", planName));
174
loggingService.
LogCommentFromText
(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("CantReadBuildPlan", planName));
178
loggingService.
LogCommentFromText
(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("BuildPlanCorrupt", planName));
182
loggingService.
LogCommentFromText
(buildEventContext, MessageImportance.Low, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("BuildPlanCorrupt", planName));
Instance\ProjectInstance.cs (1)
2896
loggingService.
LogCommentFromText
(projectBuildEventContext, MessageImportance.Low, comment);
Utilities\EngineFileUtilities.cs (1)
351
loggingService.
LogCommentFromText
(buildEventContext, MessageImportance.Low, globFailure);