-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLogScope.cs
More file actions
35 lines (33 loc) · 804 Bytes
/
LogScope.cs
File metadata and controls
35 lines (33 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* ===============================================
* 功能描述:AspNetCore.Logging.LogType
* 创 建 者:WeiGe
* 创建日期:1/2/2019 9:43:26 PM
* ===============================================*/
using System;
using System.Collections.Generic;
using System.Text;
namespace AspNetCore.FileLog
{
/// <summary>
/// LogScope
/// </summary>
public enum LogScope
{
/// <summary>
/// None
/// </summary>
None = 0,
/// <summary>
/// Contains http request information
/// </summary>
HttpContext = 1,
/// <summary>
/// Contains stack trace information
/// </summary>
Trace=2,
/// <summary>
/// Contains all information
/// </summary>
All=3
}
}