mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
35 lines
799 B
C#
35 lines
799 B
C#
namespace MewtocolNet.Logging {
|
|
|
|
/// <summary>
|
|
/// The loglevel of the logging module
|
|
/// </summary>
|
|
public enum LogLevel {
|
|
|
|
/// <summary>
|
|
/// Logs nothing
|
|
/// </summary>
|
|
None = -1,
|
|
/// <summary>
|
|
/// Logs only errors
|
|
/// </summary>
|
|
Error = 0,
|
|
/// <summary>
|
|
/// Logs info like connection establish and loss
|
|
/// </summary>
|
|
Info = 1,
|
|
/// <summary>
|
|
/// Logs only state changes
|
|
/// </summary>
|
|
Change = 2,
|
|
/// <summary>
|
|
/// Logs all errors, state changes, and messages
|
|
/// </summary>
|
|
Verbose = 3,
|
|
/// <summary>
|
|
/// Logs all types including network traffic
|
|
/// </summary>
|
|
Critical = 4,
|
|
}
|
|
|
|
}
|