Multiprocotol Terminalprogram (BAT)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MultiTerm/Common/Logging/LogLevel.cs

15 lines
255 B

namespace Common.Logging;
/// <summary>
/// Level of a log entry.
/// Listed from lowest priority to highest priority.
/// </summary>
public enum LogLevel
{
Undefined = 0,
Trace = 1,
Debug = 2,
Info = 3,
Warn = 4,
Error = 5
}