-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLogEntryLevel.cs
More file actions
40 lines (38 loc) · 1.18 KB
/
LogEntryLevel.cs
File metadata and controls
40 lines (38 loc) · 1.18 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
// The Sisk Framework source code
// Copyright (c) 2024- PROJECT PRINCIPIUM and all Sisk contributors
//
// The code below is licensed under the MIT license as
// of the date of its publication, available at
//
// File name: LogEntryLevel.cs
// Repository: https://github.com/sisk-http/core
namespace Sisk.Core;
/// <summary>
/// Defines the severity levels used for logging entries.
/// </summary>
public enum LogEntryLevel {
/// <summary>
/// Informational messages that highlight the progress of the application.
/// </summary>
Information,
/// <summary>
/// Detailed information useful during development or debugging.
/// </summary>
Trace,
/// <summary>
/// Debug-level events used for diagnosing issues during development.
/// </summary>
Debug,
/// <summary>
/// Warnings for potentially harmful situations that do not prevent the application from running.
/// </summary>
Warning,
/// <summary>
/// Error events that might still allow the application to continue running.
/// </summary>
Error,
/// <summary>
/// Critical errors that may force the application to terminate.
/// </summary>
Fatal
}