Skip to content

Commit

Permalink
remove logging output
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Jan 15, 2025
1 parent 007fb29 commit fdeac44
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/street_routing.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
}

Expand Down

0 comments on commit fdeac44

Please sign in to comment.