removed println

This commit is contained in:
Sander Hautvast 2020-07-07 10:49:37 +02:00
parent 3768f88437
commit c8f36e78b7

View file

@ -20,7 +20,7 @@ public class BewegingConsumer {
public void consume(String body) {
try {
Beweging beweging = objectMapper.readValue(body, Beweging.class);
System.out.println(beweging);
bewegingRepo.persist(beweging);
} catch (JsonProcessingException e) {
e.printStackTrace();