Skip to content

Commit

Permalink
Merge pull request #280 from PDOK/remove-superfluous-logging
Browse files Browse the repository at this point in the history
refactor(tiles): remove superfluous logging of tms limit errors
  • Loading branch information
kad-korpem authored Feb 7, 2025
2 parents a27e500 + e7dbd2d commit c51e9f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ogc/tiles/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func (t *Tiles) Tile(tilesConfig config.Tiles) http.HandlerFunc {
}
err = checkTileMatrixSetLimits(t.tileMatrixSetLimits, tileMatrixSetID, tm, tr, tc)
if err != nil {
engine.RenderProblemAndLog(engine.ProblemNotFound, w, err, err.Error())
engine.RenderProblem(engine.ProblemNotFound, w, err.Error())
return
}

Expand Down

0 comments on commit c51e9f5

Please sign in to comment.