Skip to content

Commit ffda98b

Browse files
committed
Update RawResponseController.java
1 parent 1435ad8 commit ffda98b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/fr/insee/genesis/controller/rest/responses/RawResponseController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public ResponseEntity<PagedModel<LunaticJsonRawDataModel>> getRawResponsesFromJs
205205
log.info("Try to read raw JSONs for campaign {}, with startDate={} and endDate={} - page={} - size={}", campaignId, startDate, endDate,page,size);
206206
Pageable pageable = PageRequest.of(page, size);
207207
Page<LunaticJsonRawDataModel> rawResponses = lunaticJsonRawDataApiPort.findRawDataByCampaignIdAndDate(campaignId, startDate, endDate, pageable);
208-
log.info("rawResponses=" + rawResponses.getContent().size());
208+
log.info("rawResponses={}", rawResponses.getContent().size());
209209
return ResponseEntity.status(HttpStatus.OK).body(new PagedModel<>(rawResponses));
210210
}
211211

0 commit comments

Comments
 (0)