10 lines
144 B
C#
10 lines
144 B
C#
namespace Plane.Logging
|
|
{
|
|
public enum Category
|
|
{
|
|
Debug = 0,
|
|
Exception = 1,
|
|
Info = 2,
|
|
Warn = 3
|
|
}
|
|
} |