annotate Implab/Diagnostics/TraceEventType.cs @ 48:d9d794b61bb9
interactive logger
Interactive tracing
Improved working with tracing contexts
author |
cin |
date |
Fri, 18 Apr 2014 12:34:45 +0400 |
parents |
2880242f987a |
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 }
|