You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// See LICENSE file in the project root for full license information.
4
+
//
5
+
6
+
usingMicrosoft.Extensions.Logging;
7
+
8
+
namespacenanoFramework.Logging.Syslog
9
+
{
10
+
/// <summary>
11
+
/// Severity represents the Severity in the Syslog messages. This corresponds to the values defined in RFC 3164 except None which means that the message won't be sent.
12
+
/// </summary>
13
+
publicenumSeverity
14
+
{
15
+
/// <summary>
16
+
/// Not an official RFC3164 facility. No entry will be generated when called with this Severity
17
+
/// </summary>
18
+
None=-1,
19
+
/// <summary>
20
+
/// Emergency: system is unusable. No equivalent in <see cref="LogLevel"/>
21
+
/// </summary>
22
+
Emergency,
23
+
/// <summary>
24
+
/// Alert: action must be taken immediately. No equivalent in <see cref="LogLevel"/>
25
+
/// </summary>
26
+
Alert,
27
+
/// <summary>
28
+
/// Critical: critical conditions. Mapped to <see cref="LogLevel.Critical"/>
29
+
/// </summary>
30
+
Critical,
31
+
/// <summary>
32
+
/// Error: error conditions. Mapped to <see cref="LogLevel.Error"/>
33
+
/// </summary>
34
+
Error,
35
+
/// <summary>
36
+
/// Warning: warning conditions. Mapped to <see cref="LogLevel.Warning"/>
37
+
/// </summary>
38
+
Warning,
39
+
/// <summary>
40
+
/// Notice: normal but significant condition. No equivalent in <see cref="LogLevel"/>
41
+
/// </summary>
42
+
Notice,
43
+
/// <summary>
44
+
/// Informational: informational messages. Mapped to <see cref="LogLevel.Information"/>
45
+
/// </summary>
46
+
Informational,
47
+
/// <summary>
48
+
/// Debug: debug-level messages. Mapped to <see cref="LogLevel.Debug"/> and <see cref="LogLevel.Trace"/>
0 commit comments