2 writes to _loggingService
Microsoft.Build (2)
Definition\ProjectCollection.cs (2)
1756
_loggingService
= null;
1765
_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)
615
return
_loggingService
.Loggers == null
617
: new List<ILogger>(
_loggingService
.Loggers);
858
return
_loggingService
;
1310
_loggingService
.RegisterDistributedLogger(new ReusableLogger(remoteLoggerRecord.CentralLogger), remoteLoggerRecord.ForwardingLoggerDescription);
1325
_loggingService
.UnregisterAllLoggers();
1558
public void LogBuildFinishedEvent(bool success) =>
_loggingService
.LogBuildFinished(success);
1673
_loggingService
.RegisterLogger(new ReusableLogger(logger));
1733
if (
_loggingService
!= null)
1766
_loggingService
.MaxCPUCount = maxCPUCount;
1767
_loggingService
.OnlyLogCriticalEvents = onlyLogCriticalEvents;