2 writes to _loggingService
Microsoft.Build (2)
Definition\ProjectCollection.cs (2)
1840
_loggingService
= null;
1849
_loggingService
= BackEnd.Logging.LoggingService.CreateLoggingService(_loggerMode, 0 /*Evaluation can be done as if it was on node "0"*/);
11 references to _loggingService
Microsoft.Build (11)
Definition\ProjectCollection.cs (11)
654
return
_loggingService
.Loggers == null
656
: new List<ILogger>(
_loggingService
.Loggers);
926
return
_loggingService
;
1394
_loggingService
.RegisterDistributedLogger(new Logging.ReusableLogger(remoteLoggerRecord.CentralLogger), remoteLoggerRecord.ForwardingLoggerDescription);
1409
_loggingService
.UnregisterAllLoggers();
1642
public void LogBuildFinishedEvent(bool success) =>
_loggingService
.LogBuildFinished(success);
1757
_loggingService
.RegisterLogger(new Logging.ReusableLogger(logger));
1817
if (
_loggingService
!= null)
1850
_loggingService
.MaxCPUCount = maxCPUCount;
1851
_loggingService
.OnlyLogCriticalEvents = onlyLogCriticalEvents;
1852
_loggingService
.EnableTargetOutputLogging = enableTargetOutputLogging;