Posted October 10, 201213 yr To allow mods to log information properly and in an easy way, please add the following to FMLLog.java: public static Logger getModLogger(final String name) { final Logger result = Logger.getLogger(name); result.setParent(coreLog); result.setUseParentHandlers(true); return result; } In addition please use the standard Java logging message formatter so the standard logging tools can be used properly (as supported by many IDEs): FMLLogFormatter.java:62 - msg.append(record.getMessage()); + msg.append(MessageFormat.format(record.getMessage(), record.getParameters())); This should be 100% compatible to the current logging. My Mods New Dawn - A completely new terrain engine for Minecraft TwoTility - Blocks and Items for a better Minecraft TwoGraves - Keeps your items safe on death
October 11, 201213 yr Author Where and how? Have just been starting to work with Forge. My Mods New Dawn - A completely new terrain engine for Minecraft TwoTility - Blocks and Items for a better Minecraft TwoGraves - Keeps your items safe on death
November 4, 201213 yr Read this: http://www.minecraftforge.net/wiki/Setting_up_an_environment_for_developing_Forge Protip: try and find answers yourself before asking on the forum. It's pretty likely that there is an answer. Was I helpful? Give me a thank you! http://bit.ly/HZ03zy[/img] Tired of waiting for mods to port to bukkit? use BukkitForge! (now with a working version of WorldEdit!)
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.