moved two logs at DEBUG

This commit is contained in:
Francesco Mangiacrapa 2022-11-29 12:35:30 +01:00
parent b1a09b39e3
commit 491e9a258b
1 changed files with 5 additions and 3 deletions

View File

@ -973,8 +973,9 @@ public class GeoportalDataViewerServiceImpl extends RemoteServiceServlet impleme
public List<GeoNaSpatialQueryResult> getDataResult(List<LayerObject> layerObjects, String mapSrsName,
BoundsMap selectBBOX, int maxWFSFeature, double zoomLevel) throws Exception {
LOG.info("getDataResult called for layerObjects: " + layerObjects);
if (LOG.isDebugEnabled()) {
LOG.info("getDataResult parmeters layerObjects: " + layerObjects,
LOG.debug("getDataResult parmeters layerObjects: " + layerObjects,
", mapSrsName: " + mapSrsName + ", selectBBOX: " + selectBBOX + ", maxWFSFeature: " + maxWFSFeature
+ ", zoomLevel: " + zoomLevel);
}
@ -1130,8 +1131,9 @@ public class GeoportalDataViewerServiceImpl extends RemoteServiceServlet impleme
LOG.info("returning " + listDAO.size() + " geona data objects");
if(LOG.isDebugEnabled())
LOG.info("returning " + listDAO + " geona data objects");
if(LOG.isDebugEnabled()) {
LOG.debug("returning " + listDAO + " geona data objects");
}
return listDAO;
}