Skip to content

Commit

Permalink
log recovery as warning instead of error (was distracting)
Browse files Browse the repository at this point in the history
  • Loading branch information
bossie committed Oct 8, 2024
1 parent 7c2ca43 commit 3baccd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object DatacubeSupport {
reprojected = globalBounds.get.extent.buffer(0.1).reprojectAsPolygon(globalBounds.get.crs, boundingBox.crs, 0.01).getEnvelopeInternal
}
if (!reprojected.covers(boundingBox.extent)) {
logger.error(f"Trying to construct a datacube with a bounds ${boundingBox.extent} that is not entirely inside the global bounds: ${reprojected}. ")
logger.warn(f"Trying to construct a datacube with a bounds ${boundingBox.extent} that is not entirely inside the global bounds: ${reprojected}. ")
reprojected = reprojected.expandToInclude(boundingBox.extent)
}
if (p.getName == "utm") {
Expand Down

0 comments on commit 3baccd9

Please sign in to comment.