3 implementations of IsLogging
VBCSCompiler (2)
CompilerServerLogger.cs (2)
106
public bool
IsLogging
=> _loggingStream is object;
167
public bool
IsLogging
=> false;
VBCSCompiler.UnitTests (1)
XunitCompilerServerLogger.cs (1)
13
public bool
IsLogging
=> true;
4 references to IsLogging
VBCSCompiler (4)
CompilerServerLogger.cs (4)
32
if (logger.
IsLogging
)
40
if (logger.
IsLogging
)
48
if (logger.
IsLogging
)
59
if (!logger.
IsLogging
)