From f4929ea25df54011ed9f6aacd368f4255facb004 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Wed, 8 Sep 2021 18:33:51 +0700 Subject: [PATCH] Remove debugprint --- .../dbotthepony/mc/otm/capability/AbstractStorageGridCell.java | 1 - .../java/ru/dbotthepony/mc/otm/capability/IStorageGridCell.java | 1 - 2 files changed, 2 deletions(-) diff --git a/src/main/java/ru/dbotthepony/mc/otm/capability/AbstractStorageGridCell.java b/src/main/java/ru/dbotthepony/mc/otm/capability/AbstractStorageGridCell.java index e3bb4e7df..f72deba74 100644 --- a/src/main/java/ru/dbotthepony/mc/otm/capability/AbstractStorageGridCell.java +++ b/src/main/java/ru/dbotthepony/mc/otm/capability/AbstractStorageGridCell.java @@ -91,7 +91,6 @@ public class AbstractStorageGridCell implements IStorageGridCell { @Override public void setStorageGrid(StorageGrid grid) { - OverdriveThatMatters.LOGGER.info("Set grid {} {}", this, grid); storage_grid = grid; } diff --git a/src/main/java/ru/dbotthepony/mc/otm/capability/IStorageGridCell.java b/src/main/java/ru/dbotthepony/mc/otm/capability/IStorageGridCell.java index a1eaa36c8..10ace03e0 100644 --- a/src/main/java/ru/dbotthepony/mc/otm/capability/IStorageGridCell.java +++ b/src/main/java/ru/dbotthepony/mc/otm/capability/IStorageGridCell.java @@ -81,7 +81,6 @@ public interface IStorageGridCell { } default boolean connectOrCreateStorageGrid(Level level, BlockPos pos, boolean force) { - OverdriveThatMatters.LOGGER.info("Discover {}", this); if (getStorageGrid() != null && !force) return true;