Skip to content
Draft
Prev Previous commit
Next Next commit
chore: change error logging from error to debug level in coordinate g…
…enerators
  • Loading branch information
MichaelsJP committed May 27, 2025
commit 4c6ee75f787fc57606e2495dcb0bc44b0d4e9fd5
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public CoordinateGeneratorMatrix(int numMatrices, double[] extent, String[] prof
try {
return httpClient.execute(request, this::processResponse);
} catch (IOException e) {
LOGGER.error("Error executing request: {}", e.getMessage());
LOGGER.debug("Error executing request: {}", e.getMessage());
return null;
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public CoordinateGeneratorRoute(int numRoutes, double[] extent, String[] profile
LOGGER.debug("RequestExecutor: Raw response: {}", response);
return response;
} catch (IOException e) {
LOGGER.error("Error executing request: {}", e.getMessage());
LOGGER.debug("Error executing request: {}", e.getMessage());
return null;
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public CoordinateGeneratorSnapping(int numPoints, double[] extent, double radius
try (CloseableHttpClient client = createHttpClient()) {
return client.execute(request, this::processResponse);
} catch (IOException e) {
LOGGER.error("Error executing request: {}", e.getMessage());
LOGGER.debug("Error executing request: {}", e.getMessage());
return null;
}
};
Expand Down