Skip to content

Commit a55bb59

Browse files
Replace leftover println() call with logger
1 parent 2049299 commit a55bb59

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/gametest/java/net/wurstclient/gametest/tests/AltManagerTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import net.minecraft.client.gui.screen.TitleScreen;
1414
import net.minecraft.client.gui.widget.ButtonWidget;
1515
import net.minecraft.client.resource.language.I18n;
16+
import net.wurstclient.gametest.WurstTest;
1617

1718
public enum AltManagerTest
1819
{
@@ -22,9 +23,9 @@ public enum AltManagerTest
2223

2324
public static void testAltManagerButton(ClientGameTestContext context)
2425
{
26+
WurstTest.LOGGER.info("Checking AltManager button position");
27+
2528
context.runOnClient(mc -> {
26-
System.out.println("Checking AltManager button position");
27-
2829
if(!(mc.currentScreen instanceof TitleScreen))
2930
throw new RuntimeException("Not on the title screen");
3031

0 commit comments

Comments
 (0)