##// END OF EJS Templates
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.

File last commit:

r94:a43745f81f10 v2
r196:40d7fed4a09e default
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 }
}