Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Enable verbose output when setting a log directory#578

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
EhabY merged 2 commits intocoder:mainfromEhabY:enable-verbose-when-log-dir-is-set
Sep 5, 2025
Merged
Show file tree
Hide file tree
Changes fromall 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
4 changes: 4 additions & 0 deletionsCHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,6 +2,10 @@

## Unreleased

### Changed

- Always enable verbose (`-v`) flag when a log directory is configured (`coder.proxyLogDir`).

## [1.10.1](https://github.com/coder/vscode-coder/releases/tag/v1.10.1) 2025-08-13

### Fixed
Expand Down
17 changes: 13 additions & 4 deletionssrc/commands.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -321,10 +321,19 @@ export class Commands {
*/
public async viewLogs(): Promise<void> {
if (!this.workspaceLogPath) {
vscode.window.showInformationMessage(
"No logs available. Make sure to set coder.proxyLogDirectory to get logs.",
this.workspaceLogPath || "<unset>",
);
vscode.window
.showInformationMessage(
"No logs available. Make sure to set coder.proxyLogDirectory to get logs.",
"Open Settings",
)
.then((action) => {
if (action === "Open Settings") {
vscode.commands.executeCommand(
"workbench.action.openSettings",
"coder.proxyLogDirectory",
);
}
});
return;
}
const uri = vscode.Uri.file(this.workspaceLogPath);
Expand Down
2 changes: 1 addition & 1 deletionsrc/remote.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -676,7 +676,7 @@ export class Remote {
"SSH proxy diagnostics are being written to",
logDir,
);
return ` --log-dir ${escapeCommandArg(logDir)}`;
return ` --log-dir ${escapeCommandArg(logDir)} -v`;
}

// updateSSHConfig updates the SSH configuration with a wildcard that handles
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp