4 implementations of IsLogging
VBCSCompiler (2)
src\Compilers\Shared\CompilerServerLogger.cs (2)
107
public bool
IsLogging
=> _loggingStream is object;
171
public bool
IsLogging
=> false;
VBCSCompiler.UnitTests (2)
CompilationCacheTests.cs (1)
571
public bool
IsLogging
=> true;
XunitCompilerServerLogger.cs (1)
13
public bool
IsLogging
=> true;
5 references to IsLogging
VBCSCompiler (5)
src\Compilers\Server\VBCSCompiler\CompilationCache.cs (1)
210
if (!logger.
IsLogging
)
src\Compilers\Shared\CompilerServerLogger.cs (4)
34
if (logger.
IsLogging
)
42
if (logger.
IsLogging
)
50
if (logger.
IsLogging
)
61
if (!logger.
IsLogging
)