##// END OF EJS Templates
Слияние
Слияние

File last commit:

r94:a43745f81f10 v2
r235:b49969a7043c merge 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 }
}