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));
275
var entry = new
Entry
(format, args);
7 references to Entry
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\TraceLog.cs (7)
126
public void Append(
Entry
entry)
228
private readonly
Entry
[] _log;
237
_log = new
Entry
[logSize];
247
private void AppendInMemory(
Entry
entry)
256
private void Append(
Entry
entry)
275
var
entry = new Entry(format, args);
290
internal
Entry
[] Entries => _traceLog._log;