annotate Implab/Diagnostics/TraceEventType.cs @ 43:7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
author |
cin |
date |
Wed, 16 Apr 2014 10:12:56 +0400 |
parents |
2880242f987a |
children |
d9d794b61bb9 |
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,
|
|
14 Transfer
|
|
15 }
|
|
16 }
|