forked from jagdishmodi/Sample-ASP.NET-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathILogger.cs
More file actions
187 lines (176 loc) · 6.47 KB
/
ILogger.cs
File metadata and controls
187 lines (176 loc) · 6.47 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sample.Core.Logging
{
public interface ILogger
{
void Debug(Exception e);
void Debug(string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Debug level and associated
// exception.
//
// Parameters:
// exception:
// Exception related to the event.
//
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Debug(Exception exception, string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Error level and associated
// exception.
//
// Parameters:
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Error(Exception exception);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Error level and associated
// exception.
//
// Parameters:
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Error(string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Error level and associated
// exception.
//
// Parameters:
// exception:
// Exception related to the event.
//
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Error(Exception exception, string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Fatal level and associated
// exception.
//
// Parameters:
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Fatal(string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Fatal level and associated
// exception.
//
// Parameters:
// exception:
// Exception related to the event.
//
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Fatal(Exception exception, string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Information level
// and associated exception.
//
// Parameters:
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Information(string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Information level
// and associated exception.
//
// Parameters:
// exception:
// Exception related to the event.
//
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Information(Exception exception, string messageTemplate, params object[] propertyValues);
void TrackEvent(string eventName, Dictionary<string, string> eventProperties);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Verbose level and
// associated exception.
//
// Parameters:
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Verbose(string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Verbose level and
// associated exception.
//
// Parameters:
// exception:
// Exception related to the event.
//
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Verbose(Exception exception, string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Warning level and
// associated exception.
//
// Parameters:
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Warning(string messageTemplate, params object[] propertyValues);
//
// Summary:
// Write a log event with the Serilog.Events.LogEventLevel.Warning level and
// associated exception.
//
// Parameters:
// exception:
// Exception related to the event.
//
// messageTemplate:
// Message template describing the event.
//
// propertyValues:
// Objects positionally formatted into the message template.
void Warning(Exception exception, string messageTemplate, params object[] propertyValues);
}
}