File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Manifest-Version: 1.0
22Bundle-ManifestVersion : 2
33Bundle-Name : Language Server Protocol client for Eclipse IDE (Incubation)
44Bundle-SymbolicName : org.eclipse.lsp4e;singleton:=true
5- Bundle-Version : 0.19.4 .qualifier
5+ Bundle-Version : 0.19.5 .qualifier
66Bundle-RequiredExecutionEnvironment : JavaSE-21
77Require-Bundle : org.eclipse.core.runtime;bundle-version="3.12.0",
88 org.eclipse.equinox.common;bundle-version="3.8.0",
Original file line number Diff line number Diff line change 1010 </parent >
1111 <artifactId >org.eclipse.lsp4e</artifactId >
1212 <packaging >eclipse-plugin</packaging >
13- <version >0.19.4 -SNAPSHOT</version >
13+ <version >0.19.5 -SNAPSHOT</version >
1414
1515 <build >
1616 <plugins >
Original file line number Diff line number Diff line change @@ -73,10 +73,11 @@ protected void createContentArea(Composite parent) {
7373
7474 public static void logMessage (LanguageServerWrapper wrapper , MessageParams params ) {
7575 final var log = new StringBuilder ();
76- log .append ('[' );
76+ log .append ("[LS:" ); //$NON-NLS-1$
77+ log .append (wrapper .serverDefinition .label );
78+ log .append ("][" ); //$NON-NLS-1$
7779 log .append (params .getType ());
78- log .append (']' );
79- log .append ('\t' );
80+ log .append ("]\t " ); //$NON-NLS-1$
8081 log .append (params .getMessage ());
8182
8283 switch (params .getType ()) {
You can’t perform that action at this time.
0 commit comments