##// END OF EJS Templates
TraceLog tests
TraceLog tests

File last commit:

r94:a43745f81f10 v2
r201:d7cd7a83189a v2
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
}
}