Skip to content
Snippets Groups Projects
Commit 608ac390 authored by Lene Wasskog's avatar Lene Wasskog
Browse files

log: Remove debug logging

parent 5ad3b8fa
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ import org.wololo.geojson.GeoJSONFactory;
*/
@Stateless
public class ObservationBean {
private static Logger LOGGER = LoggerFactory.getLogger(ObservationBean.class);
private static final Logger LOGGER = LoggerFactory.getLogger(ObservationBean.class);
@PersistenceContext(unitName = "VIPSLogic-PU")
EntityManager em;
@EJB
......@@ -520,10 +520,6 @@ public class ObservationBean {
.filter(o -> o.getObservationTimeSeriesId() != null)
.forEach(o -> o.setObservationTimeSeries(timeSeriesMap.get(o.getObservationTimeSeriesId())));
for (Observation o : observations) {
LOGGER.info("{}", o);
}
return observations;
}
private List<Observation> getObservationsWithObservers(List<Observation> observations) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment