diff --git a/GeoSpatialTools/octtree.py b/GeoSpatialTools/octtree.py
index c18a3163bce6e831eef5ba70fbc0f18696b9447e..e0eac8aa9f8cbc43164c3ac45ef921cb2fa71df4 100644
--- a/GeoSpatialTools/octtree.py
+++ b/GeoSpatialTools/octtree.py
@@ -201,8 +201,6 @@ class SpaceTimeRectangle:
     def contains(self, point: SpaceTimeRecord) -> bool:
         """Test if a point is contained within the SpaceTimeRectangle"""
         if point.datetime > self.end or point.datetime < self.start:
-            print("DATETIME FAILS")
-            print(point.datetime)
             return False
         return self._test_north_south(point.lat) and self._test_east_west(
             point.lon