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;