+ 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
+1 -1
View File
@@ -13,7 +13,7 @@ public class GlobalLog
}
public static void Log(String msg) { Write(log, LogFilter.Debug, msg); }
public static void Warn(String msg) {Write(warn, LogFilter.Debug, msg); }
public static void Warn(String msg) { Write(warn, LogFilter.Debug, msg); }
public static void Error(String msg) { Write(error, LogFilter.Debug, msg); }
public static void Fatal(String msg) throws Exception { Write(fatal, LogFilter.Debug, msg); throw new Exception(msg); }