PmProducer - Vulnerability Fix 53/11853/1
authorambrishest <ambrish.singh@est.tech>
Wed, 4 Oct 2023 11:25:17 +0000 (12:25 +0100)
committerambrishest <ambrish.singh@est.tech>
Wed, 4 Oct 2023 11:25:52 +0000 (12:25 +0100)
Issue-ID: NONRTRIC-914
Signed-off-by: ambrishest <ambrish.singh@est.tech>
Change-Id: Id95aa0ce46810d4e79d60f699bca1a58a2138ed6
Signed-off-by: ambrishest <ambrish.singh@est.tech>
pmproducer/src/main/java/org/oran/pmproducer/controllers/ProducerCallbacksController.java

index c7bca34..b7573fb 100644 (file)
@@ -89,7 +89,7 @@ public class ProducerCallbacksController {
             @RequestBody String body) {
         try {
             ProducerJobInfo request = gson.fromJson(body, ProducerJobInfo.class);
-            logger.debug("Job started callback id: {}, body: {}", request.id, body);
+            logger.debug("Job started callback id: {}", request.id);
             this.jobs.addJob(request.id, types.getType(request.typeId), request.owner, request.lastUpdated,
                     toJobParameters(request.jobData));
             return new ResponseEntity<>(HttpStatus.OK);