[generator] CHECK->LOG for GetPopulation().

This commit is contained in:
Maksim Andrianov 2020-03-23 00:16:48 +03:00 committed by Vladimir Byko-Ianko
parent 17e6956d9f
commit 7c4eeb0b86

View file

@ -58,7 +58,9 @@ uint64_t GetPopulation(std::string const & populationStr)
return 0;
uint64_t result = 0;
CHECK(strings::to_uint64(number, result), (number));
if (!strings::to_uint64(number, result))
LOG(LWARNING, ("Failed to get population from", number, populationStr));
return result;
}