浏览代码

Adds logging for waiting git calls

main
Eric Amodio 4 年前
父节点
当前提交
846bc6e127
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/git/git.ts

+ 2
- 1
src/git/git.ts 查看文件

@ -132,6 +132,7 @@ export async function git(options: GitCommandOptio
pendingCommands.set(command, promise);
} else {
waiting = true;
Logger.debug(`${gitCommand} ${GlyphChars.Dot} waiting...`);
}
let exception: Error | undefined;
@ -157,7 +158,7 @@ export async function git(options: GitCommandOptio
} finally {
pendingCommands.delete(command);
const duration = `${Strings.getDurationMilliseconds(start)} ms ${waiting ? '(await) ' : emptyStr}`;
const duration = `${Strings.getDurationMilliseconds(start)} ms ${waiting ? '(waited) ' : emptyStr}`;
if (exception !== undefined) {
Logger.warn(
`[${runOpts.cwd}] Git ${(exception.message || exception.toString() || emptyStr)

正在加载...
取消
保存