remove debug print
This commit is contained in:
parent
7ec640e989
commit
8339202279
2 changed files with 0 additions and 2 deletions
|
@ -50,7 +50,6 @@ extern "C" MAPNIK_EXP void on_plugin_load()
|
||||||
{
|
{
|
||||||
// initialize gdal formats
|
// initialize gdal formats
|
||||||
std::call_once(once_flag,[](){
|
std::call_once(once_flag,[](){
|
||||||
std::clog << "calling once gdal\n";
|
|
||||||
GDALAllRegister();
|
GDALAllRegister();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,7 +66,6 @@ extern "C" MAPNIK_EXP void on_plugin_load()
|
||||||
// initialize ogr formats
|
// initialize ogr formats
|
||||||
// NOTE: in GDAL >= 2.0 this is the same as GDALAllRegister()
|
// NOTE: in GDAL >= 2.0 this is the same as GDALAllRegister()
|
||||||
std::call_once(once_flag,[](){
|
std::call_once(once_flag,[](){
|
||||||
std::clog << "calling once ogr\n";
|
|
||||||
OGRRegisterAll();
|
OGRRegisterAll();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue