quick fix for #2451

This commit is contained in:
Dane Springmeyer 2014-09-30 21:29:55 -07:00
parent a35acd2a41
commit 2ce8900cf1

View file

@ -119,24 +119,6 @@ datasource_ptr datasource_cache::create(parameters const& params)
ds = datasource_ptr(create_datasource(params), datasource_deleter());
#ifdef MAPNIK_LOG
MAPNIK_LOG_DEBUG(datasource_cache)
<< "datasource_cache: Datasource="
<< ds << " type=" << type;
MAPNIK_LOG_DEBUG(datasource_cache)
<< "datasource_cache: Size="
<< params.size();
parameters::const_iterator i = params.begin();
for (; i != params.end(); ++i)
{
MAPNIK_LOG_DEBUG(datasource_cache)
<< "datasource_cache: -- "
<< i->first << "=" << i->second;
}
#endif
return ds;
}