Plane.Libraries/Plane/Logging/Categary.cs
2017-02-27 02:04:13 +08:00

10 lines
144 B
C#

namespace Plane.Logging
{
public enum Category
{
Debug = 0,
Exception = 1,
Info = 2,
Warn = 3
}
}