mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
644 B
26 lines
644 B
using System; |
|
using System.Collections.Generic; |
|
using System.Diagnostics; |
|
using System.Diagnostics.Tracing; |
|
using System.IO; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
using ICSharpCode.Decompiler.TypeSystem; |
|
using ICSharpCode.Decompiler.TypeSystem.Implementation; |
|
using Mono.Cecil; |
|
|
|
namespace ICSharpCode.Decompiler |
|
{ |
|
[EventSource(Name = "DecompilerEventSource")] |
|
public sealed class DecompilerEventSource : EventSource |
|
{ |
|
public static DecompilerEventSource Log = new DecompilerEventSource(); |
|
|
|
[Event(1, Level = EventLevel.Informational)] |
|
public void Info(string text) |
|
{ |
|
WriteEvent(1, text); |
|
} |
|
} |
|
}
|
|
|