5 implementations of IForwardingLogger
Microsoft.Build (4)
BackEnd\Components\Logging\CentralForwardingLogger.cs (1)
14
internal class CentralForwardingLogger :
IForwardingLogger
BuildCheck\Infrastructure\BuildCheckForwardingLogger.cs (1)
19
internal class BuildCheckForwardingLogger :
IForwardingLogger
Logging\DistributedLoggers\ConfigurableForwardingLogger.cs (1)
13
public class ConfigurableForwardingLogger :
IForwardingLogger
Logging\DistributedLoggers\DistributedFileLogger.cs (1)
17
public class DistributedFileLogger :
IForwardingLogger
Microsoft.Build.Engine.UnitTests (1)
BackEnd\LoggingService_Tests.cs (1)
1179
public class BaseFLThrowException : LoggerThrowException,
IForwardingLogger
7 references to IForwardingLogger
Microsoft.Build (7)
BackEnd\Components\Logging\LoggingService.cs (3)
904
if (logger is
IForwardingLogger
)
1134
IForwardingLogger
localForwardingLogger = null;
1220
IForwardingLogger
forwardingLogger = description.CreateForwardingLogger();
Logging\LoggerDescription.cs (4)
156
internal
IForwardingLogger
CreateForwardingLogger()
158
IForwardingLogger
forwardingLogger = null;
161
forwardingLogger = (
IForwardingLogger
)CreateLogger(true);
207
logger = (
IForwardingLogger
)Activator.CreateInstance(loggerClass.Type);