= Move benchmark core to fit existing standard

This commit is contained in:
Matthew Cech
2019-09-11 14:03:02 -07:00
parent d1dfab411e
commit 28377cf78e
12 changed files with 25 additions and 21 deletions
@@ -0,0 +1,11 @@
package commands.benchmark.core;
import utils.GlobalLog;
//Logging shim
public class BenchmarkLog
{
public static void log(String str) { GlobalLog.log("[Benchmark] " + str); }
public static void warn(String str) { GlobalLog.warn("[Benchmark] " + str); }
public static void error(String str) { GlobalLog.error(" [Benchmark] " + str); }
}