Skip to content

Commit

Permalink
Removed the log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
aparnamichael committed Nov 22, 2024
1 parent 53d7e0c commit 7abbafb
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 7abbafb

Please sign in to comment.