Quiet CrashReport class pre-loading debug, no flag to re-enable.

This commit is contained in:
Lex Manos 2015-06-09 21:37:33 -07:00
parent 847c0246cd
commit d4f6e9e419

View file

@ -140,16 +140,16 @@ public class MinecraftForge
else
handlers = ObjectArrays.concat(handlers, server, String.class);
FMLLog.info("Preloading CrashReport classes", ForgeVersion.getVersion());
//FMLLog.info("Preloading CrashReport classes", ForgeVersion.getVersion());
for (String s : handlers)
{
FMLLog.info("\t" + s);
//FMLLog.info("\t" + s);
try
{
Class cls = Class.forName(s, false, MinecraftForge.class.getClassLoader());
if (cls != null && !Callable.class.isAssignableFrom(cls))
{
FMLLog.info("\t% s is not a instance of callable!", s);
//FMLLog.info("\t% s is not a instance of callable!", s);
}
}
catch (Exception e){}