Skip to content

Commit

Permalink
Fix logger name on client (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE authored Sep 13, 2023
1 parent 5fb9eba commit c118928
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package me.steinborn.krypton.mod.client;

import me.steinborn.krypton.mod.server.KryptonServerInitializer;
import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
Expand All @@ -9,7 +8,7 @@

@Environment(EnvType.CLIENT)
public class KryptonClientInitializer implements ClientModInitializer {
private static final Logger LOGGER = LogManager.getLogger(KryptonServerInitializer.class);
private static final Logger LOGGER = LogManager.getLogger(KryptonClientInitializer.class);

@Override
public void onInitializeClient() {
Expand Down

0 comments on commit c118928

Please sign in to comment.