Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,12 @@ public static void logMessage(LanguageServerWrapper wrapper, MessageParams param
case Warning:
LanguageServerPlugin.logWarning(log.toString());
break;
case Info:
default:
LanguageServerPlugin.logInfo(log.toString());
if (LanguageServerPlugin.isLogTraceEnabled()) {
LanguageServerPlugin.logInfo(log.toString());
}
Comment on lines +92 to +94
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This now gates INFO (and the default branch) behind LanguageServerPlugin.isLogTraceEnabled() (debug option org.eclipse.lsp4e/trace). The shipped org.eclipse.lsp4e/.options currently only declares org.eclipse.lsp4e/debug, so the trace option isn’t discoverable when launching with -debug. Consider adding/documenting org.eclipse.lsp4e/trace in the plugin’s .options (and/or user-facing docs) so users can actually enable these logs when needed.

Copilot uses AI. Check for mistakes.
break;
}
}

Expand Down
Loading