|
|
|
@ -1,5 +1,4 @@
@@ -1,5 +1,4 @@
|
|
|
|
|
using System; |
|
|
|
|
using System.Diagnostics.Tracing; |
|
|
|
|
using System.Diagnostics.Tracing; |
|
|
|
|
|
|
|
|
|
namespace ICSharpCode.Decompiler.Instrumentation |
|
|
|
|
{ |
|
|
|
@ -30,6 +29,12 @@ namespace ICSharpCode.Decompiler.Instrumentation
@@ -30,6 +29,12 @@ namespace ICSharpCode.Decompiler.Instrumentation
|
|
|
|
|
WriteEvent(4, typeDefName, elapsedMilliseconds); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[Event(5, Level = EventLevel.Informational)] |
|
|
|
|
public void DoDecompileMethod(string methodName, long elapsedMilliseconds) |
|
|
|
|
{ |
|
|
|
|
WriteEvent(5, methodName, elapsedMilliseconds); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static DecompilerEventSource Log = new DecompilerEventSource(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|