2 writes to _loggingService
Microsoft.Build (2)
Definition\ProjectCollection.cs (2)
1818
_loggingService
= null;
1827
_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)
648
return
_loggingService
.Loggers == null
650
: new List<ILogger>(
_loggingService
.Loggers);
920
return
_loggingService
;
1372
_loggingService
.RegisterDistributedLogger(new Logging.ReusableLogger(remoteLoggerRecord.CentralLogger), remoteLoggerRecord.ForwardingLoggerDescription);
1387
_loggingService
.UnregisterAllLoggers();
1620
public void LogBuildFinishedEvent(bool success) =>
_loggingService
.LogBuildFinished(success);
1735
_loggingService
.RegisterLogger(new Logging.ReusableLogger(logger));
1795
if (
_loggingService
!= null)
1828
_loggingService
.MaxCPUCount = maxCPUCount;
1829
_loggingService
.OnlyLogCriticalEvents = onlyLogCriticalEvents;
1830
_loggingService
.EnableTargetOutputLogging = enableTargetOutputLogging;