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>2018-01-24 20:45:18 +0300
committermpimenov <mpimenov@users.noreply.github.com>2018-01-24 21:00:32 +0300
commitee2fdad1dd75296f9b80b72c4c15f56379357e1e (patch)
treeca35f9e4cccfba0a7b8f2007cc396a693e6643f7 /routing
parent3c49a663f4cc821bbf206db3d3f768bcd0971690 (diff)
Grammar.
Diffstat (limited to 'routing')
-rw-r--r--routing/async_router.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/routing/async_router.cpp b/routing/async_router.cpp
index 072a79d0ac..10cafa9690 100644
--- a/routing/async_router.cpp
+++ b/routing/async_router.cpp
@@ -231,13 +231,14 @@ void AsyncRouter::LogCode(IRouter::ResultCode code, double const elapsedSec)
LOG(LWARNING, ("Can't find intermediate point node"));
break;
case IRouter::TransitRouteNotFoundNoNetwork:
- LOG(LWARNING, ("Transit route not found because no transit network in route point mwm"));
+ LOG(LWARNING, ("No transit route is found because there's no transit network in the mwm of "
+ "the route point"));
break;
case IRouter::TransitRouteNotFoundTooLongPedestrian:
- LOG(LWARNING, ("Transit route not found because pedestrian way is too long"));
+ LOG(LWARNING, ("No transit route is found because pedestrian way is too long"));
break;
case IRouter::RouteNotFoundRedressRouteError:
- LOG(LWARNING, ("Route not found because a redress route error"));
+ LOG(LWARNING, ("Route not found because of a redress route error"));
break;
}
}