##// END OF EJS Templates
fixed: the error handler should not handle handlers errors
fixed: the error handler should not handle handlers errors

File last commit:

r94:a43745f81f10 v2
r197:86187b01c4e0 default
Show More
TraceEventType.cs
19 lines | 383 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Diagnostics {
public enum TraceEventType {
Information = 1,
Warning,
Error,
OperationStarted,
OperationCompleted,
Attach,
Detach,
Enter,
Leave
}
}