Skip to content

Commit

Permalink
Minor regressions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
basilevs committed Mar 19, 2024
1 parent 336d81a commit 9f41bb2
Showing 1 changed file with 1 addition and 6 deletions.
Expand Up @@ -517,7 +517,7 @@ public synchronized CompletableFuture<Void> stop() {
} catch (InterruptedException ex) {
Thread.currentThread().interrupt();
} catch (Exception ex) {
LOG.error(ex.getLocalizedMessage(), ex);
LOG.error(ex.getLocalizedMessage() + " occurred during shutdown of " + languageServerInstance, ex);
}
}

Expand Down Expand Up @@ -1214,9 +1214,4 @@ private boolean isValid(WorkspaceFolder wsFolder) {

}

@Override
public String toString() {
return serverDefinition.id;
}

}

0 comments on commit 9f41bb2

Please sign in to comment.