10 lines
101 B
C#
10 lines
101 B
C#
namespace TriangleNet.Logging
|
|
{
|
|
public enum LogLevel
|
|
{
|
|
Info = 0,
|
|
Warning = 1,
|
|
Error = 2
|
|
}
|
|
}
|