From fdeac44d688e149247ea1a8ef6020ebf1dbdfb82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Wed, 15 Jan 2025 17:55:45 +0100 Subject: [PATCH] remove logging output --- src/street_routing.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/street_routing.cc b/src/street_routing.cc index b72260866..3fceefd6a 100644 --- a/src/street_routing.cc +++ b/src/street_routing.cc @@ -377,12 +377,6 @@ api::Itinerary route(osr::ways const& w, for (auto& leg : itinerary.legs_) { auto const before = leg.duration_; leg.duration_ = (leg.endTime_.time_ - leg.startTime_.time_).count(); - if (leg.duration_ != before) { - std::cout << "leg duration: before=" << before - << ", after=" << leg.duration_ - << ", start_time=" << leg.startTime_ - << ", end_time=" << leg.endTime_ << "\n"; - } } }