Mercurial > pub > ImplabNet
annotate Implab/Diagnostics/TraceEventType.cs @ 35:2880242f987a diagnostics
initial log capabilities
author | cin |
---|---|
date | Mon, 14 Apr 2014 18:25:26 +0400 |
parents | |
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 } |