##// END OF EJS Templates
Added class Trace<T> to manage channels for individual classes, if SomeClass...
Added class Trace<T> to manage channels for individual classes, if SomeClass uses Trace<SomeClass> it sould be marked with TraceSourceAttribute

File last commit:

r94:a43745f81f10 v2
r212:a01d9df88d74 v2
Show More
TraceEventType.cs
19 lines | 383 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,
cin
Interactive tracing...
r48 Attach,
Detach,
cin
minor fixes
r94 Enter,
Leave
cin
initial log capabilities
r35 }
}