17 references to Logger
ILCompiler.ReadyToRun (17)
Compiler\ReadyToRunCodegenCompilation.cs (15)
739
if (
Logger
.IsVerbose)
740
Logger
.Writer.WriteLine($"Processing {obj.Count} dependencies");
787
if (
Logger
.IsVerbose)
788
Logger
.Writer.WriteLine($"Processing {methodsToRecompile.Length} recompiles");
915
if (
Logger
.IsVerbose)
926
if (
Logger
.IsVerbose)
929
Logger
.Writer.WriteLine("Compiling " + methodName);
934
Logger
.Writer.WriteLine($"Single method repro args:{GetReproInstructions(method)}");
951
corInfoImpl.CompileMethod(methodCodeNodeNeedingCode,
Logger
);
961
if (
Logger
.IsVerbose)
962
Logger
.Writer.WriteLine($"Warning: Method `{method}` was not compiled because: {ex.Message}");
966
if (
Logger
.IsVerbose)
967
Logger
.Writer.WriteLine($"Info: Method `{method}` was not compiled because `{ex.Message}` requires runtime JIT");
971
if (
Logger
.IsVerbose)
972
Logger
.Writer.WriteLine($"Warning: Method `{method}` was not compiled because `{ex.Message}` requires runtime JIT");
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
734
_compilation.
Logger
.LogMessage($"ERROR: Determinism check compiling method '{MethodBeingCompiled}' failed. Use '{_compilation.GetReproInstructions(MethodBeingCompiled)}' on command line to reproduce the failure.");
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
208
return _compilation.
Logger
;