소스 검색

Adds logging for repository watchers

main
Eric Amodio 1 년 전
부모
커밋
92fc4bbc15
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      src/git/models/repository.ts

+ 5
- 0
src/git/models/repository.ts 파일 보기

@ -271,7 +271,10 @@ export class Repository implements Disposable {
};
}
@debug({ singleLine: true })
private async setupRepoWatchersCore() {
const scope = getLogScope();
const disposables: Disposable[] = [];
disposables.push(
@ -291,6 +294,8 @@ export class Repository implements Disposable {
);
function watch(this: Repository, uri: Uri, pattern: string) {
Logger.debug(scope, `watching '${uri.toString(true)}' for repository changes`);
const watcher = workspace.createFileSystemWatcher(new RelativePattern(uri, pattern));
disposables.push(

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