简体   繁体   中英

How to log information in Forge?

I'm trying to log into using MinecraftServer.logInfo(), but I get a nosuchmethod exception.

    server.logInfo("Example message");

I'm getting the instance of MinecraftServer in the server starting event.

    MinecraftServer server = event.getServer();

适当记录器的另一个选择是

Logger logger = LogManager.getLogger(YourMod.MODID);

I'm pretty sure a simple

System.out.println("Information!");

Should do in forge.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM