mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
disable some debug flags by default...most importantly, add the scriptListLoadUnload [GameServer] flag, which toggles the "script_class_loader" spam on and off
This commit is contained in:
@@ -90,8 +90,7 @@ public class script_entry
|
||||
private static void checkEnableProfiling()
|
||||
{
|
||||
String result = base_class.getConfigSetting("GameServer", "javaEngineProfiling");
|
||||
boolean ret = result != null && (result.equals("on") || result.equals("1") || result.equals("true"));
|
||||
System.err.println("Profiling: " + ret);
|
||||
boolean ret = (result != null && (result.equals("on") || result.equals("1") || result.equals("true")));
|
||||
ENABLE_PROFILING = ret;
|
||||
profileSettingInitialized = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user