##// END OF EJS Templates
improved trace system
improved trace system

File last commit:

r48:d9d794b61bb9 interactive logger
r52:edf0bc558596 default
Show More
TraceEventType.cs
19 lines | 384 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,
Fork,
Attach,
Detach,
Created
}
}