4 implementations of IsLogging
Microsoft.Build.Tasks.CodeAnalysis (3)
src\Compilers\Core\MSBuildTask\TaskCompilerServerLogger.cs (1)
21
public bool
IsLogging
=> true;
src\Compilers\Shared\CompilerServerLogger.cs (2)
107
public bool
IsLogging
=> _loggingStream is object;
171
public bool
IsLogging
=> false;
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (1)
TestUtilities\TestableCompilerServerLogger.cs (1)
12
public bool
IsLogging
{ get; set; }
4 references to IsLogging
Microsoft.Build.Tasks.CodeAnalysis (4)
src\Compilers\Shared\CompilerServerLogger.cs (4)
34
if (logger.
IsLogging
)
42
if (logger.
IsLogging
)
50
if (logger.
IsLogging
)
61
if (!logger.
IsLogging
)