Mercurial > pub > ImplabNet
annotate Implab/Diagnostics/TraceEventType.cs @ 72:d67b95eddaf4 v2
promises refactoring
author | cin |
---|---|
date | Thu, 04 Sep 2014 18:47:12 +0400 |
parents | d9d794b61bb9 |
children | dc4942d09e74 |
rev | line source |
---|---|
35 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.Diagnostics { | |
8 public enum TraceEventType { | |
9 Information = 1, | |
10 Warning, | |
11 Error, | |
12 OperationStarted, | |
13 OperationCompleted, | |
48 | 14 Fork, |
15 Attach, | |
16 Detach, | |
17 Created | |
35 | 18 } |
19 } |