Moved one log to DEBUG

This commit is contained in:
Francesco Mangiacrapa 2022-11-28 15:44:58 +01:00
parent a55d771e6d
commit 5ebab16836
1 changed files with 5 additions and 1 deletions

View File

@ -1128,7 +1128,11 @@ public class GeoportalDataViewerServiceImpl extends RemoteServiceServlet impleme
throw new Exception(erroMsg);
}
LOG.info("returning " + listDAO + " geona data objects");
LOG.info("returning " + listDAO.size() + " geona data objects");
if(LOG.isDebugEnabled())
LOG.info("returning " + listDAO + " geona data objects");
return listDAO;
}