Ejemplo n.º 1
0
 public TraceLog(TraceType type, MosaMethod method, string stage, TraceFilter filter)
     : this(type)
 {
     this.Stage = stage;
     this.Method = method;
     this.Active = filter.IsMatch(this.Method, this.Stage);
 }
Ejemplo n.º 2
0
 public TraceLog(TraceType type, MosaMethod method, string stage, TraceFilter filter)
     : this(type)
 {
     Stage  = stage;
     Method = method;
     Active = filter.IsMatch(Method, Stage);
 }
Ejemplo n.º 3
0
 public TraceLog(TraceType type, MosaMethod method, string stage, TraceFilter filter)
     : this(type)
 {
     this.Stage  = stage;
     this.Method = method;
     this.Active = filter.IsMatch(this.Method, this.Stage);
 }
Ejemplo n.º 4
0
 public TraceLog(TraceType type, MosaMethod method, string stage, TraceFilter filter)
     : this(type)
 {
     Stage = stage;
     Method = method;
     Active = filter.IsMatch(Method, Stage);
 }
Ejemplo n.º 5
0
 public CompilerTrace()
 {
     TraceListener = new DebugCompilerEventListener();
     TraceFilter = new TraceFilter();
 }
Ejemplo n.º 6
0
 public CompilerTrace()
 {
     TraceListener = new DebugCompilerEventListener();
     TraceFilter   = new TraceFilter();
 }