Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2019-01-24 14:41:33 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2019-01-24 18:45:55 +0300
commit2477bc30b030e2e662d325dbb38986e34e40d8fe (patch)
tree774c8300458fb2b4d377b9859b861306cc7dce84 /routing/index_router.cpp
parent18e3eaecce422688db3180561ee3bcdb9ae4ead1 (diff)
Review fixes.
Diffstat (limited to 'routing/index_router.cpp')
-rw-r--r--routing/index_router.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/routing/index_router.cpp b/routing/index_router.cpp
index 32ac259d55..5dd5667b26 100644
--- a/routing/index_router.cpp
+++ b/routing/index_router.cpp
@@ -473,7 +473,8 @@ RouterResultCode IndexRouter::DoCalculateRoute(Checkpoints const & checkpoints,
if (redressResult != RouterResultCode::NoError)
return redressResult;
- LOG(LINFO, ("Route length:", route.GetTotalDistanceMeters()));
+ LOG(LINFO, ("Route length:", route.GetTotalDistanceMeters(), "meters. ETA:",
+ route.GetTotalTimeSec(), "seconds."));
m_lastRoute = make_unique<SegmentedRoute>(checkpoints.GetStart(), checkpoints.GetFinish(),
route.GetSubroutes());