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.
|
namespace Common.Logging;
|
|
|
|
/// <summary>
|
|
/// Level of a log entry.
|
|
/// </summary>
|
|
public enum LogLevel
|
|
{
|
|
Undefined = 0,
|
|
Error = 1,
|
|
Warn = 2,
|
|
Info = 3,
|
|
Debug = 4,
|
|
Trace = 5
|
|
}
|
|
|