remove debug print

This commit is contained in:
Dane Springmeyer 2016-04-05 17:24:12 -04:00
parent 7ec640e989
commit 8339202279
2 changed files with 0 additions and 2 deletions

View file

@ -50,7 +50,6 @@ extern "C" MAPNIK_EXP void on_plugin_load()
{
// initialize gdal formats
std::call_once(once_flag,[](){
std::clog << "calling once gdal\n";
GDALAllRegister();
});
}

View file

@ -66,7 +66,6 @@ extern "C" MAPNIK_EXP void on_plugin_load()
// initialize ogr formats
// NOTE: in GDAL >= 2.0 this is the same as GDALAllRegister()
std::call_once(once_flag,[](){
std::clog << "calling once ogr\n";
OGRRegisterAll();
});
}