From 77d7351226e3a7a54936259ccbfc9ef3e03bbd7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moreno?= Date: Fri, 24 Apr 2020 15:40:03 +0200 Subject: [PATCH] add log to askpass ipc --- extensions/git/src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/git/src/main.ts b/extensions/git/src/main.ts index 571c29f6f36..5c904ee547b 100644 --- a/extensions/git/src/main.ts +++ b/extensions/git/src/main.ts @@ -43,8 +43,8 @@ async function createModel(context: ExtensionContext, outputChannel: OutputChann ipc = await createIPCServer(); disposables.push(ipc); env = { ...env, ...ipc.getEnv() }; - } catch { - // noop + } catch (err) { + outputChannel.appendLine(`[error] Failed to create git askpass IPC: ${err}`); } if (ipc) {