Add name 'modid' to logger

This commit is contained in:
StoneLabs 2021-09-22 00:10:01 +02:00
parent b37ca0d707
commit 962b5dedbb

View File

@ -5,7 +5,10 @@ import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.Logger;
public class ExampleMod implements ModInitializer { public class ExampleMod implements ModInitializer {
public static final Logger LOGGER = LogManager.getLogger(); // This logger is used to write text to the console and the log file.
// It is considered best practice to use your mod id as the logger's name.
// That way, it's clear which mod wrote info, warnings, and errors.
public static final Logger LOGGER = LogManager.getLogger("modid");
@Override @Override
public void onInitialize() { public void onInitialize() {