Initial Commit
Initial commit of project.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package utils;
|
||||
|
||||
public enum LogFilter
|
||||
{
|
||||
Debug(0), Command(1), Core(2), Database(4), Response(8), Network(16); //8, 16, 32... (flags, so we can | together later)
|
||||
|
||||
private final int value;
|
||||
private LogFilter(int value)
|
||||
{
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public int getValue()
|
||||
{
|
||||
return value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user