Skip to content
Draft
Prev Previous commit
Next Next commit
fix: change route addition logging from info to debug level
  • Loading branch information
MichaelsJP committed May 27, 2025
commit bf8f72279e9c22a88f90faf7eaedfac4d88282b7
Original file line number Diff line number Diff line change
Expand Up @@ -421,8 +421,8 @@ private boolean addRouteIfUnique(Map<String, Object> start, Map<String, Object>
added, profile);

if (added) {
LOGGER.info("Added new route for profile {}: {} -> {} ({}m)", profile,
Arrays.toString(startPoint), Arrays.toString(endPoint), distance);
LOGGER.debug("Added new route for profile {}: {} -> {} ({}m)", profile,
Arrays.toString(startPoint), Arrays.toString(endPoint), distance);
return true;
} else {
LOGGER.debug("Route already exists or not added for profile {}: {} -> {} ({}m)", profile,
Expand Down