Skip to content

Commit

Permalink
Merge pull request #542 from aparnamichael/Update_log_level_for_codeA…
Browse files Browse the repository at this point in the history
…ction

Removed the log statement added to track the code action data received in Jakarta server.
  • Loading branch information
turkeylurkey authored Nov 22, 2024
2 parents 53d7e0c + 7abbafb commit 72d4f40
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ public static CodeActionContext getCodeActionContext(Map<String, Object> obj, St
}
List<Map<String, Object>> diagnosticsObj = (List<Map<String, Object>>) contextObj.get(DIAGNOSTICS_PROPERTY);
List<Diagnostic> diagnostics = diagnosticsObj.stream().map(diagnosticObj -> {
LOGGER.info("Received diagnostic data" + diagnosticObj.toString());
Diagnostic diagnostic = new Diagnostic();
diagnostic.setRange(getRange(diagnosticObj, RANGE_PROPERTY));
diagnostic.setCode(getString(diagnosticObj, CODE_PROPERTY));
Expand Down

0 comments on commit 72d4f40

Please sign in to comment.