You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
403 B
C#
18 lines
403 B
C#
namespace HcUtility.Logging
|
|
{
|
|
public struct LoggingPriority
|
|
{
|
|
public const int Lowest = 0;
|
|
public const int Low = 1;
|
|
public const int Normal = 2;
|
|
public const int High = 3;
|
|
public const int Highest = 4;
|
|
}
|
|
|
|
public struct LoggingCategory
|
|
{
|
|
public const string General = "General";
|
|
public const string Trace = "Trace";
|
|
}
|
|
}
|