##// END OF EJS Templates
refactoring, interactive tarce log almost complete
refactoring, interactive tarce log almost complete

File last commit:

r35:2880242f987a diagnostics
r47:b181f7bcb259 interactive logger
Show More
TraceEventType.cs
16 lines | 336 B | text/x-csharp | CSharpLexer
cin
initial log capabilities
r35 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,
Transfer
}
}