+ Added file utils and updated localizer format

This commit is contained in:
Matthew Cech
2019-03-30 16:12:45 -07:00
parent d40fbb776c
commit 89ab17829b
3 changed files with 74 additions and 59 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ 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)
Debug(0), Command(1), Core(2), Database(4), Response(8), Network(16), Strings(32); //8, 16, 32... (flags, so we can | together later)
private final int value;
private LogFilter(int value)