Skip to content

Commit

Permalink
fix logging of geometry details for snapshot requests with a single t…
Browse files Browse the repository at this point in the history
…imestamp
  • Loading branch information
tyrasd committed Jul 5, 2023
1 parent daa02df commit 3f2a978
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void afterCompletion(HttpServletRequest request, HttpServletResponse resp
logger.info("query time: "
+ request.getParameterMap().getOrDefault("time", new String[] { "<none>" })[0]);
try {
var inputProcessor = new InputProcessor(request, false, false);
var inputProcessor = new InputProcessor(request, true, false);
inputProcessor.processParameters();
var boundary = inputProcessor.getGeometry();
var envelope = boundary.getEnvelopeInternal();
Expand Down

0 comments on commit 3f2a978

Please sign in to comment.