Fix AutomaticEventSubscriber error message (#4986)

This commit is contained in:
Paul Fulham 2018-06-23 23:38:57 -07:00 committed by mezz
parent 59c3e1baaf
commit 61666ed6aa

View file

@ -85,7 +85,7 @@ public class AutomaticEventSubscriber
}
catch (Throwable e)
{
FMLLog.log.error("An error occurred trying to load an EventBusSubscriber {} for modid {}", mod.getModId(), e);
FMLLog.log.error("An error occurred trying to load an EventBusSubscriber {} for modid {}", targ.getClassName(), mod.getModId(), e);
throw new LoaderException(e);
}
}