+ Added image overlay custom class and utility logging

This commit is contained in:
Matthew Cech
2019-04-13 13:07:31 -07:00
parent d36de01be5
commit 484af484bc
3 changed files with 288 additions and 2 deletions
+2 -1
View File
@@ -2,7 +2,8 @@ package utils;
public enum LogFilter
{
Debug(0), Command(1), Core(2), Database(4), Response(8), Network(16), Strings(32); //8, 16, 32... (flags, so we can | together later)
// Assign numbers as flags, so we can | ('or') them together as necessary
Debug(0), Command(1), Core(2), Util(4), Database(8), Response(16), Network(32), Strings(64);
private final int value;
private LogFilter(int value)