File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ### Changed
6
+
7
+ - Always enable verbose (` -v ` ) flag when a log directory is configured (` coder.proxyLogDir ` ).
8
+
5
9
## [ 1.10.1] ( https://github.com/coder/vscode-coder/releases/tag/v1.10.1 ) 2025-08-13
6
10
7
11
### Fixed
Original file line number Diff line number Diff line change @@ -321,10 +321,19 @@ export class Commands {
321
321
*/
322
322
public async viewLogs ( ) : Promise < void > {
323
323
if ( ! this . workspaceLogPath ) {
324
- vscode . window . showInformationMessage (
325
- "No logs available. Make sure to set coder.proxyLogDirectory to get logs." ,
326
- this . workspaceLogPath || "<unset>" ,
327
- ) ;
324
+ vscode . window
325
+ . showInformationMessage (
326
+ "No logs available. Make sure to set coder.proxyLogDirectory to get logs." ,
327
+ "Open Settings" ,
328
+ )
329
+ . then ( ( action ) => {
330
+ if ( action === "Open Settings" ) {
331
+ vscode . commands . executeCommand (
332
+ "workbench.action.openSettings" ,
333
+ "coder.proxyLogDirectory" ,
334
+ ) ;
335
+ }
336
+ } ) ;
328
337
return ;
329
338
}
330
339
const uri = vscode . Uri . file ( this . workspaceLogPath ) ;
You can’t perform that action at this time.
0 commit comments