2 writes to _loggingService
Microsoft.Build (2)
Definition\ProjectCollection.cs (2)
1761
_loggingService
= null;
1770
_loggingService
= BackEnd.Logging.LoggingService.CreateLoggingService(_loggerMode, 0 /*Evaluation can be done as if it was on node "0"*/);
10 references to _loggingService
Microsoft.Build (10)
Definition\ProjectCollection.cs (10)
620
return
_loggingService
.Loggers == null
622
: new List<ILogger>(
_loggingService
.Loggers);
863
return
_loggingService
;
1315
_loggingService
.RegisterDistributedLogger(new ReusableLogger(remoteLoggerRecord.CentralLogger), remoteLoggerRecord.ForwardingLoggerDescription);
1330
_loggingService
.UnregisterAllLoggers();
1563
public void LogBuildFinishedEvent(bool success) =>
_loggingService
.LogBuildFinished(success);
1678
_loggingService
.RegisterLogger(new ReusableLogger(logger));
1738
if (
_loggingService
!= null)
1771
_loggingService
.MaxCPUCount = maxCPUCount;
1772
_loggingService
.OnlyLogCriticalEvents = onlyLogCriticalEvents;