Skip to content

Commit

Permalink
fix(debugs): removed all debugs and fixed logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Brunkow Moser committed May 13, 2024
1 parent 3b39068 commit ff45344
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ public Response getDigitalTwin(@RequestBody Object body, @PathVariable String pr
try {
EndpointDataReference endpointData = null;
try {
LogUtil.printMessage("EDR: " + jsonUtil.toJson(body, true));
endpointData = this.getEndpointData(body);
} catch (Exception e) {
return httpUtil.buildResponse(httpUtil.getBadRequest(e.getMessage()), httpResponse);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ public Response doContractAgreement(HttpServletRequest httpRequest, HttpServletR
}

LogUtil.printMessage("[ASSET"+(policyId == null?"-":"-AUTO-")+"NEGOTIATION] [PROCESS "+processId + "] Selected [POLICY "+policy.getId()+"]:["+this.jsonUtil.toJson(policy, false)+"]!");
LogUtil.printMessage("[ASSET-NEGOTIATION] [PROCESS "+processId + "] Selected [POLICY "+policy.getId()+"]:["+this.jsonUtil.toJson(policy, false)+"]!");
LogUtil.printMessage("[ASSET-NEGOTIATION] [PROCESS "+processId + "] Selected [CONTRACT "+dataset.getId()+"]:["+this.jsonUtil.toJson(dataset, false)+"]!");

contractNegotiation = dataService
.new NegotiateContract(
Expand Down

0 comments on commit ff45344

Please sign in to comment.