From f282870622c4cda86052cf877ca65a0137ee3d77 Mon Sep 17 00:00:00 2001 From: Joel Lappalainen Date: Fri, 24 Jan 2020 23:24:53 +0200 Subject: [PATCH] Temporarily change log level from debug to warn for couple of common issues --- .../org/opentripplanner/routing/impl/GraphPathFinder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/opentripplanner/routing/impl/GraphPathFinder.java b/src/main/java/org/opentripplanner/routing/impl/GraphPathFinder.java index fb08113d2bc..bfc6c935be9 100644 --- a/src/main/java/org/opentripplanner/routing/impl/GraphPathFinder.java +++ b/src/main/java/org/opentripplanner/routing/impl/GraphPathFinder.java @@ -182,7 +182,7 @@ public List getPaths(RoutingRequest options) { try { newPaths = compactLegsByReversedSearch(aStar, originalReq, options, newPaths, timeout, reversedSearchHeuristic); } catch (Exception e) { - LOG.warn("CompactLegsByReversedSearch failed on request: " + originalReq.toString()); + LOG.debug("CompactLegsByReversedSearch failed on request: " + originalReq.toString()); } } @@ -530,7 +530,7 @@ private static GraphPath joinPaths(List paths, Boolean addLegsSwitchi for (Edge e : path.edges) { lastState = e.traverse(lastState); if (lastState==null){ - LOG.warn("About to add null lastState to newPath. This may cause nullPointer in next iteration? Caused by traversing edge: " + e); + LOG.debug("About to add null lastState to newPath. This may cause nullPointer in next iteration? Caused by traversing edge: " + e); } newPath.edges.add(e); newPath.states.add(lastState);