mapnik-index - fix std::clog message typo

This commit is contained in:
artemp 2015-11-06 10:56:45 +00:00
parent 9c3fa6c739
commit 60fc5910f3

View file

@ -88,7 +88,7 @@ std::pair<bool,box2d<double>> process_geojson_file(T & boxes, std::string const&
{
if (!boost::spirit::qi::phrase_parse(start, end, (geojson_datasource_static_bbox_grammar)(boost::phoenix::ref(boxes)) , space))
{
std::clog << "mapnik-index (GeoJSON) : could extract bounding boxes from : '" << filename << "'";
std::clog << "mapnik-index (GeoJSON) : could not extract bounding boxes from : '" << filename << "'" << std::endl;
return std::make_pair(false, extent);
}
}