소스 검색

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)

불러오는 중...
취소
저장