3 implementations of LogBuildEvent
Microsoft.Build (1)
BackEnd\Components\Logging\LoggingService.cs (1)
1241public void LogBuildEvent(BuildEventArgs buildEvent)
Microsoft.Build.Engine.UnitTests (2)
BackEnd\MockLoggingService.cs (1)
371public void LogBuildEvent(BuildEventArgs buildEvent)
Telemetry\Telemetry_Tests.cs (1)
536void ILoggingService.LogBuildEvent(BuildEventArgs buildEvent) => RecordedEvents.Add(buildEvent);
25 references to LogBuildEvent
Microsoft.Build (19)
BackEnd\BuildManager\BuildManager.cs (1)
1657((IBuildComponentHost)this).LoggingService.LogBuildEvent(submissionStartedEvent);
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
357_componentHost.LoggingService.LogBuildEvent(new BuildMessageEventArgs(msg, null, null, MessageImportance.Low)
BackEnd\Components\Logging\LoggingContext.cs (2)
142_loggingService.LogBuildEvent(new BuildMessageEventArgs( 291LoggingService.LogBuildEvent(buildEvent);
BackEnd\Components\RequestBuilder\AssemblyLoadsTracker.cs (1)
149_loggingContext.LoggingService.LogBuildEvent(buildArgs);
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (3)
248_loggingService.LogBuildEvent(skippedTargetEventArgs); 378_loggingService.LogBuildEvent(args); 389_loggingService.LogBuildEvent(args);
BackEnd\Components\RequestBuilder\TaskHost.cs (5)
459_taskLoggingContext.LoggingService.LogBuildEvent(warningEvent); 467_taskLoggingContext.LoggingService.LogBuildEvent(e); 511_taskLoggingContext.LoggingService.LogBuildEvent(e); 552_taskLoggingContext.LoggingService.LogBuildEvent(e); 593_taskLoggingContext.LoggingService.LogBuildEvent(e);
BuildCheck\Infrastructure\CheckContext\CheckLoggingContext.cs (1)
27.LogBuildEvent(buildEvent);
Construction\Solution\SolutionProjectGenerator.cs (1)
1060_loggingService.LogBuildEvent(eventArgs);
Instance\TaskFactoryEngineContext.cs (4)
213_loggingContext.LoggingService.LogBuildEvent(e); 234_loggingContext.LoggingService.LogBuildEvent(e); 255_loggingContext.LoggingService.LogBuildEvent(e); 276_loggingContext.LoggingService.LogBuildEvent(e);
Microsoft.Build.Engine.UnitTests (6)
BackEnd\BuildTelemetryErrorCategorization_Tests.cs (4)
55loggingService.LogBuildEvent(errorEvent); 120loggingService.LogBuildEvent(error); 162loggingService.LogBuildEvent(error); 201loggingService.LogBuildEvent(errorEvent);
BackEnd\LoggingService_Tests.cs (2)
796ls.LogBuildEvent(warningArgs); 994loggingService.LogBuildEvent(buildEvent);