+ Added command functionality base and modified command stub
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package core.benchmark;
|
||||
|
||||
import utils.GlobalLog;
|
||||
|
||||
public class BenchmarkLog
|
||||
{
|
||||
// Logging
|
||||
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); }
|
||||
}
|
||||
Reference in New Issue
Block a user