From 534060f381e3abc0ac4e8cb403ea12b67626e40e Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Fri, 8 Jun 2018 21:24:15 +0200 Subject: [PATCH] smoketest: more debug --- extensions/git/src/commands.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/git/src/commands.ts b/extensions/git/src/commands.ts index c75e393ac89..ba4550f2e2b 100644 --- a/extensions/git/src/commands.ts +++ b/extensions/git/src/commands.ts @@ -1717,6 +1717,8 @@ export class CommandCenter { private getSCMResource(uri?: Uri): Resource | undefined { uri = uri ? uri : window.activeTextEditor && window.activeTextEditor.document.uri; + this.outputChannel.appendLine(`git.getSCMResource.uri ${uri && uri.toString()}`); + if (!uri) { return undefined; }