3 instantiations of Entry
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\TraceLog.cs (3)
254=> AppendInMemory(new Entry("Error writing log file '{0}': {1}", new[] { new Arg(path), new Arg(e.Message) })); 266=> Append(new Entry(format, args)); 275var entry = new Entry(format, args);
7 references to Entry
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\TraceLog.cs (7)
126public void Append(Entry entry) 228private readonly Entry[] _log; 237_log = new Entry[logSize]; 247private void AppendInMemory(Entry entry) 256private void Append(Entry entry) 275var entry = new Entry(format, args); 290internal Entry[] Entries => _traceLog._log;