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:
authorSergey Yershov <syershov@maps.me>2016-12-08 15:55:25 +0300
committerGitHub <noreply@github.com>2016-12-08 15:55:25 +0300
commit8793c73aacacb6ee78fc1ae537beaab1e4cfd6c7 (patch)
tree1801077c06d40a4af1ef10c0397779e4c22e57a0 /generator
parenta9a1cd929bd14cc0c4b83c47bc85fe10b8c30091 (diff)
parentdc5e2651bbdfbf06ffa56148d84ef0a413195a33 (diff)
Merge pull request #4917 from Zverik/fix_tests2
[scripts] Fix scripts and warnings for generating planet
Diffstat (limited to 'generator')
-rw-r--r--generator/routing_generator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/generator/routing_generator.cpp b/generator/routing_generator.cpp
index 35395e17f7..a050068dca 100644
--- a/generator/routing_generator.cpp
+++ b/generator/routing_generator.cpp
@@ -413,8 +413,8 @@ void BuildRoutingIndex(string const & baseDir, string const & countryName, strin
}
// Matching error. Print warning message.
- LOG(LWARNING, ("!!!!! Match not found:", seg.wayId));
- LOG(LWARNING, ("(Lat, Lon):", pts[0].y, pts[0].x, "; (Lat, Lon):", pts[1].y, pts[1].x));
+ LOG(LINFO, ("!!!!! Match not found:", seg.wayId));
+ LOG(LINFO, ("(Lat, Lon):", pts[0].y, pts[0].x, "; (Lat, Lon):", pts[1].y, pts[1].x));
int ind1 = -1;
int ind2 = -1;
@@ -438,7 +438,7 @@ void BuildRoutingIndex(string const & baseDir, string const & countryName, strin
}
}
- LOG(LWARNING, ("ind1 =", ind1, "ind2 =", ind2, "dist1 =", dist1, "dist2 =", dist2));
+ LOG(LINFO, ("ind1 =", ind1, "ind2 =", ind2, "dist1 =", dist1, "dist2 =", dist2));
}
if (vec.size() > 1)