Skip to content

Commit 77d7351

Browse files
committed
add log to askpass ipc
1 parent ae1670d commit 77d7351

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/git/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ async function createModel(context: ExtensionContext, outputChannel: OutputChann
4343
ipc = await createIPCServer();
4444
disposables.push(ipc);
4545
env = { ...env, ...ipc.getEnv() };
46-
} catch {
47-
// noop
46+
} catch (err) {
47+
outputChannel.appendLine(`[error] Failed to create git askpass IPC: ${err}`);
4848
}
4949

5050
if (ipc) {

0 commit comments

Comments
 (0)